Files
talk/client/coral-framework/index.js
T
2017-02-07 20:10:18 -03:00

18 lines
451 B
JavaScript

import store from './services/store';
import pym from './services/PymConnection';
import I18n from './modules/i18n/i18n';
import * as authActions from './actions/auth';
import * as assetActions from './actions/asset';
import * as notificationActions from './actions/notification';
import Notification from './modules/notification/Notification';
export {
pym,
I18n,
store,
authActions,
assetActions,
Notification,
notificationActions
};