diff options
Diffstat (limited to 'examples/ssr/src/components/Container.astro')
-rw-r--r-- | examples/ssr/src/components/Container.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ssr/src/components/Container.astro b/examples/ssr/src/components/Container.astro index 3576de90a..f1741156c 100644 --- a/examples/ssr/src/components/Container.astro +++ b/examples/ssr/src/components/Container.astro @@ -1,5 +1,5 @@ --- -const { tag = "div" } = Astro.props; +const { tag = 'div' } = Astro.props; const Tag = tag; --- |