cortex-cms/cortex

View on GitHub
node_package/src/reducers/index.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import tenantSwitcherReducer from './tenant_switcher_reducer';
import railsContextReducer from './rails_context_reducer';
import wizardReducer from './wizard_reducer'

const GetReducers = (CortexState, railsContext) => {
  return {
    session: tenantSwitcherReducer(CortexState),
    wizard: wizardReducer(CortexState),
    railsContext: railsContextReducer(railsContext)
  }
};

export default GetReducers