mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
b9bee24787
* Add an example with SSR caching. * Update server.js * Update README.md * Use app.renderError to display errors in SSR example.
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>
|
|
)
|