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

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

export default rootReducer