rsnext/test/integration/basepath/pages/hello.js

10 lines
158 B
JavaScript
Raw Normal View History

import Link from 'next/link'
export default () => (
<Link href="/other-page">
<a id="other-page-link">
<h1>Hello World</h1>
</a>
</Link>
)