From cf67eff86ef9a027c3247463d13b340644a0bb8c Mon Sep 17 00:00:00 2001 From: Joffrey BION Date: Tue, 25 Jul 2017 00:08:26 +0200 Subject: Organize imports and format JS files --- frontend/src/sagas.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'frontend/src/sagas.js') diff --git a/frontend/src/sagas.js b/frontend/src/sagas.js index b7fc4122..a1f80c73 100644 --- a/frontend/src/sagas.js +++ b/frontend/src/sagas.js @@ -1,13 +1,11 @@ // @flow +import type { History } from 'react-router'; import { router } from 'redux-saga-router'; import { call, fork } from 'redux-saga/effects'; - +import { connectToGame, SevenWondersSession } from './api/sevenWondersApi'; import { makeSagaRoutes } from './routes'; import errorHandlingSaga from './sagas/errors'; -import type { History } from 'react-router'; -import { SevenWondersSession, connectToGame } from './api/sevenWondersApi'; - export default function* rootSaga(history: History): * { let sevenWondersSession: SevenWondersSession | void; try { -- cgit