diff options
Diffstat (limited to 'frontend/src/store.js')
-rw-r--r-- | frontend/src/store.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/store.js b/frontend/src/store.js index 3170d194..9c0be13a 100644 --- a/frontend/src/store.js +++ b/frontend/src/store.js @@ -1,8 +1,8 @@ // @flow -import { createStore, applyMiddleware, compose } from 'redux'; import createHistory from 'history/createBrowserHistory'; -import { routerMiddleware } from 'react-router-redux'; import { fromJS } from 'immutable'; +import { routerMiddleware } from 'react-router-redux'; +import { applyMiddleware, compose, createStore } from 'redux'; import createSagaMiddleware from 'redux-saga'; import { createReducer } from './reducers'; import { rootSaga } from './sagas'; |