mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 02:43:46 +08:00
18 lines
456 B
JavaScript
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
|
|
}
|