rsnext/examples/custom-server-fastify/pages/index.js
Marcus Silva 0b9475624f
chore: remove-redundant-example-import (#13175)
This issue is related to #12964 

**I changed the following examples:**
`with-zeit-fetch` 
`with-why-did-you-render`
`with-styletron`
`custom-server-fastify`
`custom-server-express`
`with-why-did-you-render`
`custom-server-hapi`
`custom-server-koa`
`custom-server-polka`
`custom-server-typescript`
`progressive-render`
`ssr-caching`
`svg-components`
`using-preact`
`with-ant-design`
2020-05-22 16:13:37 +00:00

18 lines
281 B
JavaScript

import Link from 'next/link'
export default function Home() {
return (
<ul>
<li>
<Link href="/b" as="/a">
<a>a</a>
</Link>
</li>
<li>
<Link href="/a" as="/b">
<a>b</a>
</Link>
</li>
</ul>
)
}