blob: 2f1359d629eacf2edfcbcd10b8f6cafefef596a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { combineReducers } from 'redux'
import { construction } from './construction-mode'
import { currentTopologyId } from './current-ids'
import { interactionLevel } from './interaction-level'
import { objects } from './objects'
const rootReducer = combineReducers({
objects,
construction,
currentTopologyId,
interactionLevel,
})
export default rootReducer
|