diff options
Diffstat (limited to 'examples/with-content/src/layouts')
-rw-r--r-- | examples/with-content/src/layouts/BlogPost.astro | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/with-content/src/layouts/BlogPost.astro b/examples/with-content/src/layouts/BlogPost.astro index c2527082a..ba3ea7018 100644 --- a/examples/with-content/src/layouts/BlogPost.astro +++ b/examples/with-content/src/layouts/BlogPost.astro @@ -6,9 +6,7 @@ import type { CollectionEntry } from 'astro:content'; type Props = CollectionEntry<'blog'>['data']; -const { - title, description, pubDate, updatedDate, heroImage, -} = Astro.props; +const { title, description, pubDate, updatedDate, heroImage } = Astro.props; --- <html lang="en"> |