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