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