rsnext/examples/custom-server-fastify/pages/index.js

18 lines
258 B
JavaScript
Raw Normal View History

2017-10-03 07:58:26 +02:00
import React from 'react'
import Link from 'next/link'
export default () => (
<ul>
<li>
<Link href='/b' as='/a'>
<a>a</a>
</Link>
</li>
<li>
<Link href='/a' as='/b'>
<a>b</a>
</Link>
</li>
2017-10-03 07:58:26 +02:00
</ul>
)