Add playground

This commit is contained in:
Amy Wang 2022-06-03 01:31:07 -04:00
parent ce166cf404
commit 25c3c75a06
2 changed files with 16 additions and 1 deletions

View File

@ -1,5 +1,10 @@
import Link from "next/link";
import React from "react";
export default function Home() {
return <p>Hello, world!</p>;
return (
<p>
Click <Link href="/playground">here</Link> to visit the playground
</p>
);
}

10
pages/playground.tsx Normal file
View File

@ -0,0 +1,10 @@
import React from "react";
export default function Home() {
return (
<>
<h1>Playground</h1>
<p>Show off your components here!</p>
</>
);
}