rsnext/test/integration/trailing-slashes/pages/external-linker.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

25 lines
531 B
JavaScript

import Link from 'next/link'
import { useRouter } from 'next/router'
export async function getServerSideProps({ query }) {
return {
props: { href: decodeURI(query.href) || '/' },
}
}
export default function ExternalLinker({ href }) {
const router = useRouter()
const pushRoute = () => {
router.push(href)
}
return (
<div>
<Link href={href} id="link">
link to{href}
</Link>
<button id="route-pusher" onClick={pushRoute}>
push route {href}
</button>
</div>
)
}