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

10 lines
142 B
JavaScript
Raw Normal View History

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