rsnext/test/integration/error-in-error/pages/index.js

11 lines
170 B
JavaScript
Raw Normal View History

import Link from 'next/link'
export default () => (
<>
<h3>Hi 👋</h3>
<Link href='/a-non-existing-page'>
<a>a lnik to no-where</a>
</Link>
</>
)