aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/ducks/index.js
blob: f4ce8fa643d56f6886fbddccc0129f8cc4ba65f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {combineReducers} from 'redux'
import eventLog from './eventLog'
import websocket from './websocket'
import flows from './flows'
import ui from './ui.js'

const rootReducer = combineReducers({
    eventLog,
    websocket,
    flows,
    ui
})

export default rootReducer