rsnext/test/integration/production-nav/pages/another.js

10 lines
131 B
JavaScript
Raw Normal View History

import Link from 'next/link'
export default () => (
<>
<Link href="/">
<a id="to-index">Index</a>
</Link>
</>
)