1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { combineReducers } from 'redux'; import shortid from 'shortid'; import charts from '../../chart/chartReducer'; import saveModal from './saveModalReducer'; import explore from './exploreReducer'; export default combineReducers({ charts, saveModal, explore, impressionId: () => (shortid.generate()), }); |