I am trying to programmatically change pages using browserHistory.push. In one of my components, but not in a component that I embedded inside of that one. >
browserHistory.push
Using withRouter is fine, an alternative option is to pass the history as a prop from parent to child (without using withRouter), e.g:
Parent
Child
this.props.history.push('/dashboard');