diff options
Diffstat (limited to 'examples/blog/src/components/BaseHead.astro')
-rw-r--r-- | examples/blog/src/components/BaseHead.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro index 7113e39d8..e11d11149 100644 --- a/examples/blog/src/components/BaseHead.astro +++ b/examples/blog/src/components/BaseHead.astro @@ -3,7 +3,7 @@ // all pages through the use of the <BaseHead /> component. import '../styles/global.css'; -export interface Props { +interface Props { title: string; description: string; image?: string; |