lore-hook-router
Loads the react-router routes and history type
Loads the react-router routes and history type
Whether browser should use pushState or hash to keep track of routes
https://github.com/ReactTraining/react-router/blob/v3.2.0/docs/guides/Histories.md
The type of router history you want to use in your application.
Typically browserHistory
if you want to use pushState routes like https://www.myapp.com/posts/1
or hashHistory
if you want to use hash-bang (#) style routes like https://www.myapp.com/#/posts/1
.
import { browserHistory } from 'react-router';
...
history: browserHistory