rsnext/test/integration/static-page-name/pages/index.js
JJ Kasper 354de28422 Only add static files route if folder exists (#9305)
* Only add static files route if folder exists

* Remove extra import
2019-11-05 06:55:35 +01:00

10 lines
161 B
JavaScript

import Link from 'next/link'
export default () => (
<>
<h3>Hello</h3>
<Link href='/static'>
<a id='to-static'>To static</a>
</Link>
</>
)