summaryrefslogtreecommitdiff
path: root/examples/basics/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/basics/src')
-rw-r--r--examples/basics/src/components/Card.astro2
-rw-r--r--examples/basics/src/layouts/Layout.astro2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/basics/src/components/Card.astro b/examples/basics/src/components/Card.astro
index c68fa2ab3..a1e0ccf6e 100644
--- a/examples/basics/src/components/Card.astro
+++ b/examples/basics/src/components/Card.astro
@@ -1,5 +1,5 @@
---
-export interface Props {
+interface Props {
title: string;
body: string;
href: string;
diff --git a/examples/basics/src/layouts/Layout.astro b/examples/basics/src/layouts/Layout.astro
index 7479f9c39..39e868100 100644
--- a/examples/basics/src/layouts/Layout.astro
+++ b/examples/basics/src/layouts/Layout.astro
@@ -1,5 +1,5 @@
---
-export interface Props {
+interface Props {
title: string;
}