index.js 239 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import {combineReducers} from 'redux'; import app from './app/appReducer'; import associatorGift from './associatorGift/associatorGiftReducer'; const rootReducer = combineReducers({ app, associatorGift, }); export default rootReducer;