mirror of
https://github.com/apache/superset.git
synced 2026-04-22 17:45:21 +00:00
Create Chart component for all chart fetching and rendering, and apply redux architecture in dashboard view.
12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
import { combineReducers } from 'redux';
|
|
|
|
import charts from '../../chart/chartReducer';
|
|
import saveModal from './saveModalReducer';
|
|
import explore from './exploreReducer';
|
|
|
|
export default combineReducers({
|
|
charts,
|
|
saveModal,
|
|
explore,
|
|
});
|