rsnext/test/integration/basic/pages/nav/with-hoc.js
Connor Davis fcf1167cd4 Upgrade standard and fix files (#6358)
Upgrades `standard` to major version 12
2019-02-19 22:45:07 +01:00

23 lines
543 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>
)