aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/ducks/ui/index.js
blob: f5e6851fe01683cb63b32180d24ed24bfa436b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { combineReducers } from 'redux'
import flow from './flow'
import header from './header'
import modal from './modal'
import optionsEditor from './optionsEditor'

// TODO: Just move ducks/ui/* into ducks/?
export default combineReducers({
    flow,
    header,
    modal,
    optionsEditor,
})