We could navigate to different path using
this.props.router.push(\'/some/path\')
Is there a way to send params (object) along when navigating?
if you want to send it in query string
this.props.router.push({ pathname: '/payment-history', query: { email: rowData.email } })