Files
talk/client/coral-framework/index.js
T
2016-11-01 16:04:59 -07:00

18 lines
456 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
}