In the current version of React Router (v3) I can accept a server response and use browserHistory.push to go to the appropriate response page. However, this isn
browserHistory.push
you can use it like this as i do it for login and manny different things
class Login extends Component { constructor(props){ super(props); this.login=this.login.bind(this) } login(){ this.props.history.push('/dashboard'); } render() { return ( login )