summaryrefslogtreecommitdiff
path: root/frontend/src/sagas/home.js
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-04-29 21:30:56 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-04-29 21:51:35 +0200
commit8ea773d13c55560db412e43cedfeed134625db57 (patch)
tree6db0d81c9a9d52af086e8b83d4e40242f1b33241 /frontend/src/sagas/home.js
parentRemove default exports everywhere (diff)
downloadseven-wonders-8ea773d13c55560db412e43cedfeed134625db57.tar.gz
seven-wonders-8ea773d13c55560db412e43cedfeed134625db57.tar.bz2
seven-wonders-8ea773d13c55560db412e43cedfeed134625db57.zip
Organize imports
Diffstat (limited to 'frontend/src/sagas/home.js')
-rw-r--r--frontend/src/sagas/home.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/sagas/home.js b/frontend/src/sagas/home.js
index db273d28..c55986c3 100644
--- a/frontend/src/sagas/home.js
+++ b/frontend/src/sagas/home.js
@@ -1,7 +1,7 @@
// @flow
import { push } from 'react-router-redux';
import { eventChannel } from 'redux-saga';
-import { apply, call, put, take, all } from 'redux-saga/effects';
+import { all, apply, call, put, take } from 'redux-saga/effects';
import type { ApiPlayer } from '../api/model';
import type { SevenWondersSession } from '../api/sevenWondersApi';
bgstack15