aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Hassan El Mghari <hassan4709@gmail.com> 2022-07-07 15:29:27 -0400
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-07-07 14:14:57 -0700
commit485ef8c4fc8fa70b4d3f3fd1d063b69d70774d9f (patch)
tree64522a589ebed89f99760e15ddfa1ccb716875f5
parent5b880512fb4bf90ac60536138e6d6c3730e247da (diff)
downloadbun-485ef8c4fc8fa70b4d3f3fd1d063b69d70774d9f.tar.gz
bun-485ef8c4fc8fa70b4d3f3fd1d063b69d70774d9f.tar.zst
bun-485ef8c4fc8fa70b4d3f3fd1d063b69d70774d9f.zip
Delete second.tsx page as it's not being used
-rw-r--r--examples/next/pages/second.tsx22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/next/pages/second.tsx b/examples/next/pages/second.tsx
deleted file mode 100644
index 0e7b5a5cf..000000000
--- a/examples/next/pages/second.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import Link from "next/link";
-
-export default function Second({}) {
- return (
- <div style={{ padding: 16 }}>
- <h1>Second</h1>
-
- <ul>
- <li>
- <Link href="/">
- <a>Root page</a>
- </Link>
- </li>
- <li>
- <Link href="/foo/bar/third">
- <a>Third! page</a>
- </Link>
- </li>
- </ul>
- </div>
- );
-}