rsnext/test/integration/client-shallow-routing/pages/[slug].js
Tim Neutkens f260328900
BREAKING CHANGE: Enable newNextLinkBehavior (#41459)
- Enable newNextLinkBehavior. See #36436 
- Run next/link codemod on test suite

Note that from when this lands on apps trying canary will need to run
the new-link codemod in order to upgrade.
Ideally we have to detect `<a>` while rendering the new link and warn
for it.

Co-authored-by: Steven <steven@ceriously.com>
2022-10-17 21:20:28 -04:00

29 lines
604 B
JavaScript

import Link from 'next/link'
export default function Page(props) {
return (
<>
<p id="props">{JSON.stringify(props)}</p>
<Link href="/first?a=b" shallow id="add-query-shallow">
add query shallow
</Link>
<br />
<Link href="/first" shallow id="remove-query-shallow">
remove query shallow
</Link>
<br />
<Link href="/another" id="to-another">
to /another non-shallow
</Link>
</>
)
}
export const getServerSideProps = ({ params }) => {
return {
props: {
params,
random: Math.random(),
},
}
}