Files
talk/client/coral-framework/index.js
T

18 lines
464 B
JavaScript

import Notification from './notification/Notification';
import store from './store/store';
import {fetchConfig} from './store/actions/config';
import * as itemActions from './store/actions/items';
import I18n from './i18n/i18n';
import * as notificationActions from './store/actions/notification';
import * as authActions from './store/actions/auth';
export {
Notification,
store,
fetchConfig,
itemActions,
I18n,
notificationActions,
authActions
};