diff options
author | 2021-10-01 23:13:34 +0900 | |
---|---|---|
committer | 2021-10-01 10:13:34 -0400 | |
commit | dd6442a686ac13cf58df56cf75d08efacea16b06 (patch) | |
tree | 3b518f07df6b565f46edd459f9bab903174e5ef3 /examples/blog/src | |
parent | c9364bed0f28e0816e4fe3312c6a539f8cae7e08 (diff) | |
download | astro-dd6442a686ac13cf58df56cf75d08efacea16b06.tar.gz astro-dd6442a686ac13cf58df56cf75d08efacea16b06.tar.zst astro-dd6442a686ac13cf58df56cf75d08efacea16b06.zip |
chore: add alt type (#1471)
Diffstat (limited to 'examples/blog/src')
-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; |