next.js/test/e2e/with-router/pages/a.js
a.js19 lines332 B
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)
Quest for Codev2.0.0
/
SIGN IN