rsnext/examples/with-static-export/app/page.tsx

15 lines
256 B
TypeScript

import Link from 'next/link'
const Home = () => {
return (
<div>
<h1>Home</h1>
<p>Hello World! This is the Home page</p>
<p>
Visit the <Link href="/about">About</Link> page.
</p>
</div>
)
}
export default Home