diff options
author | Victor Chabbert <chabbertvi@eisti.eu> | 2017-05-22 22:47:20 +0200 |
---|---|---|
committer | Victor Chabbert <chabbertvi@eisti.eu> | 2017-05-22 22:47:20 +0200 |
commit | 3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9 (patch) | |
tree | 22cd8ad06323babb4d625cb1e4aeec8834081521 /frontend/src/store.js | |
parent | Revert to version number for flow-typed (diff) | |
download | seven-wonders-3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9.tar.gz seven-wonders-3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9.tar.bz2 seven-wonders-3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9.zip |
Move to prettier-eslint for better configuration
Diffstat (limited to 'frontend/src/store.js')
-rw-r--r-- | frontend/src/store.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend/src/store.js b/frontend/src/store.js index 4bd22184..a5d9a34a 100644 --- a/frontend/src/store.js +++ b/frontend/src/store.js @@ -21,7 +21,11 @@ export default function configureStore(initialState = {}) { ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ : compose; - const store = createStore(createReducer(), Immutable.from(initialState), composeEnhancers(...enhancers)); + const store = createStore( + createReducer(), + Immutable.from(initialState), + composeEnhancers(...enhancers) + ); sagaMiddleware.run(rootSaga, browserHistory); |