next.js/test/e2e/app-dir/static-rsc-cache-components/app/page.tsx
page.tsx13 lines199 B
import Link from 'next/link'

export default function Page() {
  return (
    <div id="home">
      home{' '}
      <Link href="/alpha" prefetch={false}>
        alpha
      </Link>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN