summaryrefslogtreecommitdiff
path: root/examples/blog/src
diff options
context:
space:
mode:
authorGravatar Yoshiaki Togami <62130798+togami2864@users.noreply.github.com> 2021-10-01 23:13:34 +0900
committerGravatar GitHub <noreply@github.com> 2021-10-01 10:13:34 -0400
commitdd6442a686ac13cf58df56cf75d08efacea16b06 (patch)
tree3b518f07df6b565f46edd459f9bab903174e5ef3 /examples/blog/src
parentc9364bed0f28e0816e4fe3312c6a539f8cae7e08 (diff)
downloadastro-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.astro1
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;