Files
talk/client/coral-framework/index.js
T
2017-05-10 14:13:32 -03:00

15 lines
286 B
JavaScript

import pym from './services/PymConnection';
import I18n from './modules/i18n/i18n';
import actions from './actions';
import hocs from './hocs';
// TODO (bc): Deprecate old actions. Spreading actions is now needed.
export default {
pym,
I18n,
actions,
...hocs,
...actions
};