summaryrefslogtreecommitdiff
path: root/frontend/src/reducers.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/reducers.js')
-rw-r--r--frontend/src/reducers.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/frontend/src/reducers.js b/frontend/src/reducers.js
deleted file mode 100644
index 612bd0c5..00000000
--- a/frontend/src/reducers.js
+++ /dev/null
@@ -1,25 +0,0 @@
-// @flow
-import { routerReducer } from 'react-router-redux';
-import { combineReducers } from 'redux';
-import type { ApiPlayer } from './api/model';
-import type { CurrentGameState } from './redux/currentGame';
-import { createCurrentGameReducer } from './redux/currentGame';
-import type { GamesState } from './redux/games';
-import { createGamesReducer } from './redux/games';
-import { currentUserReducer } from './redux/user';
-
-export type GlobalState = {
- currentGame: CurrentGameState;
- currentUser: ApiPlayer;
- games: GamesState;
- routing: any;
-}
-
-export function createReducer() {
- return combineReducers({
- currentGame: createCurrentGameReducer(),
- currentUser: currentUserReducer,
- games: createGamesReducer(),
- routing: routerReducer,
- });
-}
bgstack15