rsnext/test/integration/static-page-name/pages/index.js

11 lines
161 B
JavaScript
Raw Normal View History

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