2018-12-06 22:08:40 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import operations from './operations';
|
|
|
|
import selectors from './selectors';
|
2019-03-12 13:13:20 +00:00
|
|
|
import mutations from './mutations';
|
2018-12-06 22:08:40 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
operations,
|
|
|
|
selectors,
|
2019-03-12 13:13:20 +00:00
|
|
|
mutations,
|
2018-12-06 22:08:40 +00:00
|
|
|
};
|