aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/ducks/ui/index.js
blob: cdee7ebbfe9c2364d5e29f279095c46e2285b244 (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 option from './option'

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