rsnext/examples/custom-server/pages/index.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
269 B
TypeScript
Raw Normal View History

import Link from "next/link";
export default function Home() {
return (
<ul>
<li>
<Link href="/a" as="/a">
a
</Link>
</li>
<li>
<Link href="/b" as="/b">
b
</Link>
</li>
</ul>
);
}