mirror of
https://github.com/wassname/talk.git
synced 2026-07-15 11:26:58 +08:00
18 lines
464 B
JavaScript
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
|
|
};
|