summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/redux/reducers/index.js
blob: 9f556d188f540b1a086a6a5cb52fb68c839e94c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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'
import { projects } from './projects'

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

export default rootReducer