mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
19 lines
334 B
JavaScript
19 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)
|