summaryrefslogtreecommitdiff
path: root/src/reducers/index.js
blob: f1f51337c88b9aa9d2428b94bd0d41722c220a06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import {combineReducers} from "redux";
import {auth} from "./auth";
import {construction} from "./construction";
import {interactionLevel} from "./interaction-level";
import {modals} from "./modals";
import {objects} from "./objects";
import {simulationList} from "./simulation-list";
import {currentSimulationId} from "./simulations";
import {currentDatacenterId} from "./topology";

const rootReducer = combineReducers({
    auth,
    objects,
    modals,
    simulationList,
    currentSimulationId,
    currentDatacenterId,
    interactionLevel,
    construction,
});

export default rootReducer;