next.js/test/development/app-dir/cache-components-tasks/fixtures/with-prefetch-config/app/page.tsx
page.tsx15 lines282 B
import Link from 'next/link'

export default function Page() {
  // NOTE: these links must be kept in sync with `path` variables used in the test
  return (
    <main>
      <ul>
        <li>
          <Link href="/simple">/simple</Link>
        </li>
      </ul>
    </main>
  )
}
Quest for Codev2.0.0
/
SIGN IN