mirror of
https://github.com/wassname/talk.git
synced 2026-07-16 11:22:16 +08:00
24 lines
688 B
JavaScript
24 lines
688 B
JavaScript
import RootContainer from './dynamic-containers/RootContainer'
|
|
import MapContainer from './dynamic-containers/MapContainer'
|
|
import Container from './dynamic-containers/DynamicContainer'
|
|
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 {
|
|
RootContainer,
|
|
MapContainer,
|
|
Container,
|
|
Notification,
|
|
store,
|
|
fetchConfig,
|
|
itemActions,
|
|
I18n,
|
|
notificationActions,
|
|
authActions
|
|
}
|