index.js
403 Bytes
import {combineReducers} from 'redux';
import app from './app/appReducer';
import installment from './installment/installment/installmentReducer';
import newRegister from './installment/newRegister/newRegisterReducer';
import repayList from './installment/repayList/repayListReducer';
const rootReducer = combineReducers({
app,
installment,
newRegister,
repayList,
});
export default rootReducer;