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

15 lines
233 B
JavaScript
Raw Normal View History

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