2018-07-05 03:14:40 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import actions from './actions';
|
2018-11-16 03:32:11 +00:00
|
|
|
import reducer from './reducer';
|
2018-07-05 03:14:40 +00:00
|
|
|
import resolvers from './resolvers';
|
2018-11-16 03:32:11 +00:00
|
|
|
import selectors from './selectors';
|
2018-07-05 03:14:40 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
actions,
|
2018-11-16 03:32:11 +00:00
|
|
|
reducer,
|
2018-07-05 03:14:40 +00:00
|
|
|
resolvers,
|
2018-11-16 03:32:11 +00:00
|
|
|
selectors,
|
2018-07-05 03:14:40 +00:00
|
|
|
};
|