all files / src/explore/reducers/ index.js

0% Statements 0/7
100% Branches 0/0
100% Functions 0/0
0% Lines 0/7
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()),
});