UNPKG

core-dashboard-worona

Version:
26 lines (23 loc) 585 B
/* eslint-disable global-require, import/no-dynamic-require */ import * as actions from './actions'; import * as types from './types'; import * as reducerCreators from './reducerCreators'; import * as reducers from './reducers'; import * as libs from './libs'; import * as store from './store'; import * as sagas from './sagas'; import * as selectors from './selectors'; import * as i18n from './i18n'; const locales = lang => require(`./locales/${lang}.json`); export { actions, types, reducerCreators, reducers, libs, store, sagas, selectors, locales, i18n, };