[web] Add modal to js/ducks/ui/index.js

This commit is contained in:
Matthew Shao 2017-06-27 22:00:10 +08:00
parent f95dcfd2e5
commit 23a2409a87

View File

@ -1,9 +1,11 @@
import { combineReducers } from 'redux' import { combineReducers } from 'redux'
import flow from './flow' import flow from './flow'
import header from './header' import header from './header'
import modal from './modal'
// TODO: Just move ducks/ui/* into ducks/? // TODO: Just move ducks/ui/* into ducks/?
export default combineReducers({ export default combineReducers({
flow, flow,
header, header,
modal
}) })