blob: 0f2426ecff0bba29a2aaceb77d34f434637620ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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"
export default combineReducers({
eventLog,
flows,
settings,
connection,
ui,
})
|