rsnext/examples/github-pages/pages/about.tsx

13 lines
193 B
TypeScript
Raw Normal View History

import Link from 'next/link'
export default function About() {
return (
<div>
<div>About</div>
<div>
Back to <Link href="/">Home</Link>
</div>
</div>
)
}