aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-next/pages/posts
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-10-15 20:08:40 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-10-15 20:08:40 -0700
commitcf2e81b03662c4b1a227d1bc9560a91826ef20e6 (patch)
tree0dc03cb97af1eb0615b8bb491696247962a81b73 /examples/hello-next/pages/posts
parent0baa3b511e28cfb124f712e12d8f93474e6ce6fa (diff)
parentbf2732599cc7e45f320f75b38672c1a1fc3d5583 (diff)
downloadbun-cf2e81b03662c4b1a227d1bc9560a91826ef20e6.tar.gz
bun-cf2e81b03662c4b1a227d1bc9560a91826ef20e6.tar.zst
bun-cf2e81b03662c4b1a227d1bc9560a91826ef20e6.zip
Merge branch 'jarred/gen'
Diffstat (limited to 'examples/hello-next/pages/posts')
-rw-r--r--examples/hello-next/pages/posts/[id].tsx19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/hello-next/pages/posts/[id].tsx b/examples/hello-next/pages/posts/[id].tsx
deleted file mode 100644
index bf795ae83..000000000
--- a/examples/hello-next/pages/posts/[id].tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import { useRouter } from "next/router";
-import Link from "next/link";
-
-export default function Post({}) {
- const router = useRouter();
-
- return (
- <div style={{ padding: 16 }}>
- <h1>Post: {router.query.id}</h1>
- <ul>
- <li>
- <Link href="/">
- <a>Root page</a>
- </Link>
- </li>
- </ul>
- </div>
- );
-}