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