Files
bun.sh/examples/next/pages/second.tsx
2021-10-13 00:28:20 -07:00

23 lines
392 B
TypeScript

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>
);
}