Previously, I was able to reroute user (e.g. on successful login) using browser history:
import { browserHistory } from 'react-router'
browserHistory.replace('/home')
In the new react-router I am no longer able to import browserHistory, what is the alternative way to achieve my goal?