rsnext/test/integration/production/pages/index/index.js
JJ Kasper c3b1f31ed5 Fix /index/index.js route not emitting the right route in production (#6516)
Also added integration test in production for this

Fixes: #6285
2019-03-03 19:36:32 +01:00

8 lines
167 B
JavaScript

import Link from 'next/link'
export default () => (
<div>
<Link href='/about'><a>About Page</a></Link>
<p className='index-page'>Hello World</p>
</div>
)