Files
superset2/superset/assets/javascripts/explore/reducers/index.js
Grace Guo 724c3f48a4 add frontend logging utility function (#4226)
add loading log for dash and exploreview
breakdown whole page load action to multiple charts loading events and render events
2018-01-30 10:27:13 -08:00

14 lines
320 B
JavaScript

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()),
});