mirror of
https://github.com/wassname/talk.git
synced 2026-08-07 11:29:44 +08:00
20 lines
519 B
JavaScript
20 lines
519 B
JavaScript
import Notification from './modules/notification/Notification';
|
|
import store from './store';
|
|
import {fetchConfig} from './actions/config';
|
|
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 embedStream from './actions/embedStream';
|
|
|
|
export {
|
|
Notification,
|
|
store,
|
|
fetchConfig,
|
|
itemActions,
|
|
I18n,
|
|
notificationActions,
|
|
authActions,
|
|
embedStream
|
|
};
|