example purecompononets
Example 1: pure components
// some-other-file.js
import history from './history'
history.push('/go-here')
Example 2: pure components
// then, in redux actions for example
import { push } from 'react-router-redux'
dispatch(push('/some/path'))