summaryrefslogtreecommitdiff
path: root/frontend/src/store.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/store.js')
-rw-r--r--frontend/src/store.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/frontend/src/store.js b/frontend/src/store.js
index a095695b..47b2073e 100644
--- a/frontend/src/store.js
+++ b/frontend/src/store.js
@@ -1,13 +1,12 @@
// @flow
-import { createStore, applyMiddleware, compose } from 'redux';
-import { browserHistory } from 'react-router';
-import { syncHistoryWithStore, routerMiddleware } from 'react-router-redux';
import { fromJS } from 'immutable';
-
-import createReducer from './reducers';
+import { browserHistory } from 'react-router';
+import { routerMiddleware, syncHistoryWithStore } from 'react-router-redux';
+import { applyMiddleware, compose, createStore } from 'redux';
import createSagaMiddleware from 'redux-saga';
-import rootSaga from './sagas';
+import createReducer from './reducers';
import { makeSelectLocationState } from './redux/app';
+import rootSaga from './sagas';
export default function configureStore(initialState: Object = {}) {
const sagaMiddleware = createSagaMiddleware();
bgstack15