diff options
-rw-r--r-- | examples/blog/src/components/BlogPost.astro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/blog/src/components/BlogPost.astro b/examples/blog/src/components/BlogPost.astro index e6a838404..9f7ac9efe 100644 --- a/examples/blog/src/components/BlogPost.astro +++ b/examples/blog/src/components/BlogPost.astro @@ -6,6 +6,7 @@ export interface Props { author: string; publishDate: string; heroImage: string; + alt: string; } const { title, author, publishDate, heroImage, alt } = Astro.props; |