rsnext/test/integration/dedupes-scripts/components/hello.js

8 lines
106 B
JavaScript
Raw Normal View History

import Link from 'next/link'
export default () => (
<Link href='/'>
<a>Hello world</a>
</Link>
)