Files
talk/client/coral-framework/index.js
T
Belen Curcio 16f15c5faf Adding todo
2017-04-06 19:05:46 -03:00

17 lines
341 B
JavaScript

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