@wenn/onb
Version:
onb-core
36 lines (32 loc) • 938 B
JavaScript
import { combineReducers } from 'redux';
import settings from './settings.reducer';
import currentPage from './page.reducer';
import currentStep from './stepper.reducer';
import retrySms from './retrySms.reducer';
import failedCodeAttempts from './failedCodeAttempts.reducer';
import loading from './loading.reducer';
import notification from './notifications.reducer';
import flowerror from './flowerror.reducer';
import { reducer as form } from 'redux-form';
import camunda from './camunda.reducer';
import camundaData from './camundaData.reducer';
import bpmStep from './bpmstep.reducer';
import locations from './locations.reducer';
import hasError from './hasError.reducer';
const rootReducer = combineReducers({
settings,
currentPage,
currentStep,
loading,
notification,
retrySms,
failedCodeAttempts,
flowerror,
form,
camunda,
camundaData,
bpmStep,
locations,
hasError
});
export default rootReducer;