root.js 601B

123456789101112131415
  1. import { combineReducers } from 'redux'
  2. import lang from './lang.js'
  3. import flashMessage from './flashMessage.js'
  4. import user from './user.js'
  5. import currentWorkspace from './currentWorkspace.js'
  6. import workspaceContentList from './workspaceContentList.js'
  7. import workspaceList from './workspaceList.js'
  8. import appList from './appList.js'
  9. import contentType from './contentType.js'
  10. import timezone from './timezone.js'
  11. const rootReducer = combineReducers({ lang, flashMessage, user, currentWorkspace, workspaceContentList, workspaceList, appList, contentType, timezone })
  12. export default rootReducer