index.js
365 Bytes
import {combineReducers} from 'redux';
import app from './app/appReducer';
import yearActivity from './yearActivity/yearActivityReducer';
import fastExpress from './fastExpress/fastExpressReducer';
import birth from './birth/birthReducer';
const rootReducer = combineReducers({
app,
yearActivity,
fastExpress,
birth,
});
export default rootReducer;