This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Link from './Link'; | |
export function MyComponent(props) { | |
// NOTE: you can use all of the same props used for `next/link` | |
return ( | |
<div> | |
<Link href="/some-rad-page"> | |
<a>My Link Text</a> | |
</Link> | |
<Link href="/en/some-rad-page"> |