diff --git a/examples/minimal/src/components/counter.astro b/examples/minimal/src/components/counter.astro
new file mode 100644
index 0000000000..dfac91a2b4
--- /dev/null
+++ b/examples/minimal/src/components/counter.astro
@@ -0,0 +1,31 @@
+---
+const { count } = Astro.props;
+---
+
+
+
+
diff --git a/examples/minimal/src/pages/index.astro b/examples/minimal/src/pages/index.astro
index 25f796bf17..5ca2ac8a90 100644
--- a/examples/minimal/src/pages/index.astro
+++ b/examples/minimal/src/pages/index.astro
@@ -1,5 +1,5 @@
---
-
+import Counter from '../components/counter.astro'
---
@@ -9,5 +9,6 @@
Astro
+
-
\ No newline at end of file
+