17 lines
254 B
JavaScript
17 lines
254 B
JavaScript
|
/** @format */
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import actions from './actions';
|
||
|
import selectors from './selectors';
|
||
|
import reducer from './reducer';
|
||
|
import resolvers from './resolvers';
|
||
|
|
||
|
export default {
|
||
|
actions,
|
||
|
selectors,
|
||
|
reducer,
|
||
|
resolvers,
|
||
|
};
|