react-code-dataset
/
next.js
/test
/e2e
/app-dir
/app-client-cache
/fixtures
/parallel-routes
/app
/page.js
| import Link from 'next/link' | |
| export default function Page() { | |
| return ( | |
| <div> | |
| <Link href="/0" prefetch={true}> | |
| To Dynamic Page | |
| </Link> | |
| </div> | |
| ) | |
| } | |