summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/redux/reducers/index.js
blob: 1b17a20667ee471e64c032cdc7af8d12cfb4f645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { combineReducers } from 'redux'
import { construction } from './construction-mode'
import { currentTopologyId } from './current-ids'
import { interactionLevel } from './interaction-level'
import { map } from './map'
import { objects } from './objects'

const rootReducer = combineReducers({
    objects,
    construction,
    map,
    currentTopologyId,
    interactionLevel,
})

export default rootReducer