16 lines
282 B
Handlebars
16 lines
282 B
Handlebars
import actions from './actions';
|
|
import constants from './constants';
|
|
import reducer from './reducer';
|
|
import selectors from './selectors';
|
|
import sagas from './sagas';
|
|
import apis from './apis';
|
|
|
|
export default {
|
|
actions,
|
|
constants,
|
|
reducer,
|
|
selectors,
|
|
sagas,
|
|
apis,
|
|
};
|