aboutsummaryrefslogtreecommitdiff
path: root/demos/hello-next/pages/blue.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'demos/hello-next/pages/blue.tsx')
-rw-r--r--demos/hello-next/pages/blue.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/demos/hello-next/pages/blue.tsx b/demos/hello-next/pages/blue.tsx
new file mode 100644
index 000000000..fe72a744f
--- /dev/null
+++ b/demos/hello-next/pages/blue.tsx
@@ -0,0 +1,9 @@
+import Link from "next/link";
+
+export default function Blue({}) {
+ return (
+ <div>
+ <h1>Blue</h1>
+ </div>
+ );
+}