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

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