2018-08-22 17:54:48 +00:00
|
|
|
/** @format */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import actions from './actions';
|
|
|
|
import reducer from './reducer';
|
|
|
|
import resolvers from './resolvers';
|
2018-11-16 03:32:11 +00:00
|
|
|
import selectors from './selectors';
|
2018-08-22 17:54:48 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
actions,
|
|
|
|
reducer,
|
|
|
|
resolvers,
|
2018-11-16 03:32:11 +00:00
|
|
|
selectors,
|
2018-08-22 17:54:48 +00:00
|
|
|
};
|