summaryrefslogtreecommitdiff
path: root/frontend/src/sagas.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.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.js')
-rw-r--r--frontend/src/sagas.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/sagas.js b/frontend/src/sagas.js
index 457dac04..40f8a587 100644
--- a/frontend/src/sagas.js
+++ b/frontend/src/sagas.js
@@ -3,8 +3,8 @@ import type { History } from 'react-router';
import { call, fork } from 'redux-saga/effects';
import { connectToGame, SevenWondersSession } from './api/sevenWondersApi';
import { errorHandlingSaga } from './sagas/errors';
-import { homeSaga } from './sagas/home';
import { gameBrowserSaga } from './sagas/gameBrowser';
+import { homeSaga } from './sagas/home';
import { lobbySaga } from './sagas/lobby';
export function* rootSaga(history: History): * {
bgstack15