next.js/test/e2e/legacy-link-behavior/app/validations/client/child-component/page.tsx
page.tsx18 lines288 B
'use client'

import Link from 'next/link'

export default function Page() {
  return (
    <>
      <Link href="/about" legacyBehavior passHref>
        <ChildComponent>About</ChildComponent>
      </Link>
    </>
  )
}

function ChildComponent(props: any) {
  return <a {...props} />
}
Quest for Codev2.0.0
/
SIGN IN