rsnext/test/integration/rewrites-has-condition/pages/index.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

18 lines
383 B
JavaScript

import Link from 'next/link'
export default function Page(props) {
return (
<>
<p id="index">index page</p>
<Link href="/rewrite-simple" id="to-simple">
to /rewrite-simple
</Link>
<br />
<Link href="/rewrite-with-has?hasQuery=true" id="to-has-rewrite">
to /rewrite-with-has?hasQuery=true
</Link>
<br />
</>
)
}