summaryrefslogtreecommitdiff
path: root/frontend/src/sagas/home.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/sagas/home.js')
-rw-r--r--frontend/src/sagas/home.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/src/sagas/home.js b/frontend/src/sagas/home.js
index 0b30f784..a6f19565 100644
--- a/frontend/src/sagas/home.js
+++ b/frontend/src/sagas/home.js
@@ -1,11 +1,11 @@
// @flow
-import { apply, call, put, take } from 'redux-saga/effects'
-import { push } from 'react-router-redux'
-import { eventChannel } from 'redux-saga'
+import { push } from 'react-router-redux';
+import { eventChannel } from 'redux-saga';
+import { apply, call, put, take } from 'redux-saga/effects';
+import type { ApiPlayer } from '../api/model';
+import type { SevenWondersSession } from '../api/sevenWondersApi';
-import { actions, types } from '../redux/players'
-import type { SevenWondersSession } from '../api/sevenWondersApi'
-import type { ApiPlayer } from '../api/model'
+import { actions, types } from '../redux/players';
function* sendUsername(session: SevenWondersSession): * {
while (true) {
bgstack15