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