mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
1708222381
* add 'next' api * add render APIs * add 'as' prop to Link * check Accept header to serve json response * check if response was finished on getInitialProps call * move server/app to server/index * load webpack-hot-middleware-client by absolute path * server: options for testing * add tests * example: improve * server: make dir optional * fix client routing * add parameterized routing example * link: fix display url * Add custom-server-express example (#352) * Add custom-server-express example * Remove extraneous nexts in express routes defs * Update next config in server.js * Handle accept headers totally inside Next.js (#385) * Handle accept headers totally inside Next.js Now user doesn't need to handle it anymore. * Move json pages serving to /_next/pages base path. * Join paths correctly. * remove next/render
11 lines
369 B
JavaScript
11 lines
369 B
JavaScript
import React from 'react'
|
|
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>
|
|
)
|