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

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

export default rootReducer