rsnext/test/integration/with-router/pages/a.js
Jacob Page 498f37e33f Support events emitter for router (#4726)
Fixes #4679 
* Document usage of `events` router property
* Expose `events` in the `router` context object
2018-07-05 14:41:18 +02:00

18 lines
334 B
JavaScript

import * as React from 'react'
import { withRouter } from 'next/router'
class PageA extends React.Component {
goToB () {
this.props.router.push('/b')
}
render () {
return (
<div id='page-a'>
<button onClick={() => this.goToB()}>Go to B</button>
</div>
)
}
}
export default withRouter(PageA)