Skip to content

Instantly share code, notes, and snippets.

@drwpow
Created May 4, 2018 13:54
Show Gist options
  • Save drwpow/d55337c3a87dbe41c7e0cd81f973aa14 to your computer and use it in GitHub Desktop.
Save drwpow/d55337c3a87dbe41c7e0cd81f973aa14 to your computer and use it in GitHub Desktop.
/* Old (React Router) */
<Link to="/my/page">
A link
</Link>
/* New (Next.js router) */
<Link href="/my/page" passHref>
<a>
A link
</a>
</Link>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment