diff options
Diffstat (limited to 'examples/with-nanostores/src')
-rw-r--r-- | examples/with-nanostores/src/layouts/Layout.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/with-nanostores/src/layouts/Layout.astro b/examples/with-nanostores/src/layouts/Layout.astro index dae8c6e1a..954513f79 100644 --- a/examples/with-nanostores/src/layouts/Layout.astro +++ b/examples/with-nanostores/src/layouts/Layout.astro @@ -6,7 +6,7 @@ export interface Props { title: string; } -const { title } = Astro.props as Props; +const { title } = Astro.props; --- <!DOCTYPE html> |