14 lines
207 B
JavaScript
14 lines
207 B
JavaScript
|
/** @format */
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import reducers from './reducers';
|
||
|
import actions from './actions';
|
||
|
import selectors from './selectors';
|
||
|
|
||
|
export default {
|
||
|
reducers,
|
||
|
actions,
|
||
|
selectors,
|
||
|
};
|