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

17 lines
251 B
JavaScript
Raw Normal View History

import Link from 'next/link'
function Index() {
return (
<>
<h3>Hi 👋</h3>
<Link href="/a-non-existing-page">
<a>a link to no-where</a>
</Link>
</>
)
}
Index.getInitialProps = () => ({})
export default Index