diff options
author | 2022-07-07 15:29:27 -0400 | |
---|---|---|
committer | 2022-07-07 14:14:57 -0700 | |
commit | 485ef8c4fc8fa70b4d3f3fd1d063b69d70774d9f (patch) | |
tree | 64522a589ebed89f99760e15ddfa1ccb716875f5 | |
parent | 5b880512fb4bf90ac60536138e6d6c3730e247da (diff) | |
download | bun-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.tsx | 22 |
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> - ); -} |