mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
10 lines
343 B
JavaScript
10 lines
343 B
JavaScript
import Link from 'next/link'
|
|
|
|
export default () => (
|
|
<ul>
|
|
<li><Link href='/blog?id=first' as='/blog/first'><a>My first blog post</a></Link></li>
|
|
<li><Link href='/blog?id=second' as='/blog/second'><a>My second blog post</a></Link></li>
|
|
<li><Link href='/blog?id=last' as='/blog/last'><a>My last blog post</a></Link></li>
|
|
</ul>
|
|
)
|