summaryrefslogtreecommitdiff
path: root/frontend/src/store.js
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2017-05-22 22:47:20 +0200
committerVictor Chabbert <chabbertvi@eisti.eu>2017-05-22 22:47:20 +0200
commit3ff3b72f31b4a2647366c17dd2bbba0a8aae58e9 (patch)
tree22cd8ad06323babb4d625cb1e4aeec8834081521 /frontend/src/store.js
parentRevert to version number for flow-typed (diff)
downloadseven-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.js6
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);
bgstack15