next.js/test/e2e/legacy-link-behavior/app/about/page.tsx
page.tsx13 lines201 B
import Link from 'next/link'

export default function Page() {
  return (
    <>
      <h1 id="about-page">About Page</h1>
      <Link href="/" legacyBehavior>
        Home
      </Link>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN