rsnext/test/integration/custom-routes/pages/hello.js

11 lines
163 B
JavaScript
Raw Normal View History

2019-11-09 23:34:53 +01:00
import Link from 'next/link'
export default () => (
<>
<h3 id="hello">Hello</h3>
<Link href="/nav">
<a id="to-nav">to nav</a>
2019-11-09 23:34:53 +01:00
</Link>
</>
)