mirror of
https://github.com/apache/superset.git
synced 2026-04-23 10:04:45 +00:00
* split reducer logic for ExploreViewContainer * fix saveModal component and unit tests * revert changes in SaveModal_spec. will make another commit just to improve test coverage for SaveModal component. * remove comment-out code * fix merge confilicts
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
import { combineReducers } from 'redux';
|
|
|
|
import chart from './chartReducer';
|
|
import saveModal from './saveModalReducer';
|
|
import explore from './exploreReducer';
|
|
|
|
export default combineReducers({
|
|
chart,
|
|
saveModal,
|
|
explore,
|
|
});
|