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

export default combineReducers({
    eventLog,
    flows,
    settings,
    connection,
    ui,
    options,
})