rsnext/test/integration/client-navigation/pages/nav/with-hoc.js
Joe Haddad b3170d2648
Format missed files (#7464)
* Format missed files

* Remove unnecessary rule

* Fix type error
2019-05-29 18:19:32 -07:00

25 lines
557 B
JavaScript

import { withRouter } from 'next/router'
const Link = withRouter(({ router, children, href }) => {
const handleClick = e => {
e.preventDefault()
router.push(href)
}
return (
<div>
<span id='pathname'>Current path: {router.pathname}</span>
<span id='asPath'>Current asPath: {router.asPath}</span>
<a href='#' onClick={handleClick}>
{children}
</a>
</div>
)
})
export default () => (
<div className='nav-with-hoc'>
<Link href='/nav'>Go Back</Link>
<p>This is the about page.</p>
</div>
)