diff options
author | 2021-08-17 21:20:34 -0700 | |
---|---|---|
committer | 2021-08-17 21:20:34 -0700 | |
commit | 306c7dda6189521b44253eaf4696eb1ea1b1227f (patch) | |
tree | 444236a2f1ecd05650adffbc5a060a6d7d8ce37c /demos/hello-next/pages/second.tsx | |
parent | a703afedddfff4f1a4652a234aea199764830c87 (diff) | |
parent | 28cc70cf50398b4b9b6e9ab027b7d965406fba2d (diff) | |
download | bun-306c7dda6189521b44253eaf4696eb1ea1b1227f.tar.gz bun-306c7dda6189521b44253eaf4696eb1ea1b1227f.tar.zst bun-306c7dda6189521b44253eaf4696eb1ea1b1227f.zip |
Merge branch 'main' of github.com:Jarred-Sumner/esdev
Former-commit-id: f4062ec24c4368670a0f5bc336de32fe1df6e821
Diffstat (limited to 'demos/hello-next/pages/second.tsx')
-rw-r--r-- | demos/hello-next/pages/second.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/demos/hello-next/pages/second.tsx b/demos/hello-next/pages/second.tsx new file mode 100644 index 000000000..ae5fd5ec8 --- /dev/null +++ b/demos/hello-next/pages/second.tsx @@ -0,0 +1,18 @@ +import Link from "next/link"; + +export default function Second({}) { + return ( + <div style={{ padding: 16 }}> + <h1>Second</h1> + + <ul> + <li> + <a href="/">Root page</a> + </li> + <li> + <a href="/foo/bar/third">Third page</a> + </li> + </ul> + </div> + ); +} |