File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 22import * as React from 'react' ;
33import * as ReactDOM from 'react-dom' ;
44import { Provider } from 'react-redux' ;
5- import { Router , Route , hashHistory } from 'react-router' ;
5+ import { Router , Route , browserHistory } from 'react-router' ;
66import { syncHistoryWithStore } from 'react-router-redux' ;
77// app imports
88import { MainLayout } from './layouts/main-layout' ;
99import { HomeContainer } from './containers/home-container/index' ;
1010import { CssModulesContainer } from './containers/css-modules-container/index' ;
11+ import NotFoundContainer from './containers/not-found/index' ;
1112import CurrencyConverterContainer from './containers/currency-converter-container/index' ;
1213
1314import { store } from './store/index' ;
14- const history = syncHistoryWithStore ( hashHistory , store ) as any ;
15+ const history = syncHistoryWithStore ( browserHistory , store ) as any ;
1516
1617function App ( ) {
1718 return (
You can’t perform that action at this time.
0 commit comments