summaryrefslogtreecommitdiff
path: root/examples/blog/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog/src')
-rw-r--r--examples/blog/src/components/BaseHead.astro2
-rw-r--r--examples/blog/src/components/FormattedDate.astro2
2 files changed, 2 insertions, 2 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;
diff --git a/examples/blog/src/components/FormattedDate.astro b/examples/blog/src/components/FormattedDate.astro
index 1a40fbc09..1bcce73a2 100644
--- a/examples/blog/src/components/FormattedDate.astro
+++ b/examples/blog/src/components/FormattedDate.astro
@@ -1,5 +1,5 @@
---
-export interface Props {
+interface Props {
date: Date;
}