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

27 lines
359 B
JavaScript

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