diff options
Diffstat (limited to 'examples/ssr/src/components/Container.astro')
-rw-r--r-- | examples/ssr/src/components/Container.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/ssr/src/components/Container.astro b/examples/ssr/src/components/Container.astro index f982522b8..3576de90a 100644 --- a/examples/ssr/src/components/Container.astro +++ b/examples/ssr/src/components/Container.astro @@ -1,7 +1,8 @@ --- -const { tag = 'div' } = Astro.props; +const { tag = "div" } = Astro.props; const Tag = tag; --- + <style> .container { width: 1248px; /** TODO: responsive */ |