react-code-dataset / next.js /test /development /pages-dir /client-navigation /fixture /pages /link-number-child.js
| import React from 'react' | |
| import Link from 'next/link' | |
| export default function Page() { | |
| return ( | |
| <div> | |
| Hello World.{' '} | |
| <Link href="/about" legacyBehavior> | |
| {1000} | |
| </Link> | |
| </div> | |
| ) | |
| } | |