import React from 'react' import Router from 'next/router' const styles = { a: { marginRight: 10 } } const Link = ({ children, href }) => ( { e.preventDefault() Router.push(href) }} > { children } ) export default () => (
Home About
Now you are in the route: {Router.route}
)