index.js 239 Bytes
import {combineReducers} from 'redux';
import app from './app/appReducer';
import associatorGift from './associatorGift/associatorGiftReducer';

const rootReducer = combineReducers({
	app,
	associatorGift,
});

export default rootReducer;