woocommerce/plugins/woocommerce-admin/client/store/reports/index.js

27 lines
349 B
JavaScript
Raw Normal View History

/** @format */
/**
* External dependencies
*/
import { combineReducers } from 'redux';
/**
* Internal dependencies
*/
import stats from './stats';
export default {
reducer: combineReducers( {
stats: stats.reducer,
} ),
actions: {
...stats.actions,
},
selectors: {
...stats.selectors,
},
resolvers: {
...stats.resolvers,
},
};