From dd6442a686ac13cf58df56cf75d08efacea16b06 Mon Sep 17 00:00:00 2001 From: Yoshiaki Togami <62130798+togami2864@users.noreply.github.com> Date: Fri, 1 Oct 2021 23:13:34 +0900 Subject: [PATCH] chore: add alt type (#1471) --- examples/blog/src/components/BlogPost.astro | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/blog/src/components/BlogPost.astro b/examples/blog/src/components/BlogPost.astro index e6a8384049..9f7ac9efec 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;