mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-25 21:56:14 +00:00
15 lines
219 B
JavaScript
15 lines
219 B
JavaScript
import Link from 'next/link'
|
|
|
|
export default function FirstPost() {
|
|
return (
|
|
<>
|
|
<h1>First Post</h1>
|
|
<h2>
|
|
<Link href="/">
|
|
<a>Back to home</a>
|
|
</Link>
|
|
</h2>
|
|
</>
|
|
)
|
|
}
|