Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // src/app/components/Nav.js
  2.  
  3. // Next.js has a nice router we'll use
  4. import Link from 'next/link'
  5.  
  6. // The links are based on the URLs that will serve those pages
  7. export default () =>
  8. <ul>
  9. <li>
  10. <Link href='/'><a>Home</a></Link>
  11. </li>
  12. <li>
  13. <Link href='/about'><a>About</a></Link>
  14. </li>
  15. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement