mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 04:26:10 +08:00
18 lines
457 B
JavaScript
18 lines
457 B
JavaScript
import Notification from './modules/notification/Notification';
|
|
import store from './store';
|
|
import * as itemActions from './actions/items';
|
|
import I18n from './modules/i18n/i18n';
|
|
import * as notificationActions from './actions/notification';
|
|
import * as authActions from './actions/auth';
|
|
import * as configActions from './actions/config';
|
|
|
|
export {
|
|
Notification,
|
|
store,
|
|
itemActions,
|
|
I18n,
|
|
notificationActions,
|
|
authActions,
|
|
configActions
|
|
};
|