mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-25 13:46:10 +00:00
15 lines
202 B
JavaScript
15 lines
202 B
JavaScript
import Link from 'next/link'
|
|
|
|
const FirstPost = () => (
|
|
<>
|
|
<h1>First Post</h1>
|
|
<h2>
|
|
<Link href="/">
|
|
<a>Back to home</a>
|
|
</Link>
|
|
</h2>
|
|
</>
|
|
)
|
|
|
|
export default FirstPost
|