2018-12-13 22:55:04 -08:00
|
|
|
const getDefault = mod => mod.default
|
|
|
|
|
2018-01-25 09:03:34 -08:00
|
|
|
export const importTimeline = () => import(
|
2018-01-27 16:35:44 -08:00
|
|
|
/* webpackChunkName: 'Timeline' */ '../_components/timeline/Timeline.html'
|
2018-12-13 22:55:04 -08:00
|
|
|
).then(getDefault)
|
2018-01-14 23:24:27 -08:00
|
|
|
|
2018-12-13 22:55:04 -08:00
|
|
|
export const importPageLifecycle = () => import(
|
|
|
|
/* webpackChunkName: 'page-lifecycle' */ 'page-lifecycle/dist/lifecycle.mjs'
|
|
|
|
).then(getDefault)
|
|
|
|
|
2018-02-11 13:46:57 -08:00
|
|
|
export const importWebSocketClient = () => import(
|
|
|
|
/* webpackChunkName: '@gamestdio/websocket' */ '@gamestdio/websocket'
|
2018-12-13 22:55:04 -08:00
|
|
|
).then(getDefault)
|
2018-02-14 21:51:34 -08:00
|
|
|
|
2018-04-21 08:45:41 -07:00
|
|
|
export const importVirtualList = () => import(
|
|
|
|
/* webpackChunkName: 'VirtualList.html' */ '../_components/virtualList/VirtualList.html'
|
2018-12-13 22:55:04 -08:00
|
|
|
).then(getDefault)
|
2018-04-21 08:45:41 -07:00
|
|
|
|
2018-06-09 22:55:58 -07:00
|
|
|
export const importList = () => import(
|
|
|
|
/* webpackChunkName: 'List.html' */ '../_components/list/List.html'
|
2018-12-13 22:55:04 -08:00
|
|
|
).then(getDefault)
|
2018-04-21 08:45:41 -07:00
|
|
|
|
|
|
|
export const importStatusVirtualListItem = () => import(
|
|
|
|
/* webpackChunkName: 'StatusVirtualListItem.html' */ '../_components/timeline/StatusVirtualListItem.html'
|
2018-12-13 22:55:04 -08:00
|
|
|
).then(getDefault)
|
2018-04-21 08:45:41 -07:00
|
|
|
|
|
|
|
export const importNotificationVirtualListItem = () => import(
|
|
|
|
/* webpackChunkName: 'NotificationVirtualListItem.html' */ '../_components/timeline/NotificationVirtualListItem.html'
|
2018-12-13 22:55:04 -08:00
|
|
|
).then(getDefault)
|
2018-12-15 17:13:40 -08:00
|
|
|
|
|
|
|
export const importDatabase = () => import(
|
|
|
|
/* webpackChunkName: 'database.js' */ '../_database/databaseApis.js'
|
|
|
|
)
|
2018-12-16 10:22:34 -08:00
|
|
|
|
|
|
|
export const importLoggedInObservers = () => import(
|
|
|
|
/* webpackChunkName: 'loggedInObservers.js' */ '../_store/observers/loggedInObservers.js'
|
|
|
|
).then(getDefault)
|
2018-12-18 00:43:51 -08:00
|
|
|
|
|
|
|
export const importEmojiMart = () => import(
|
2018-12-18 12:45:49 -08:00
|
|
|
/* webpackChunkName: 'createEmojiMartPickerFromData.js' */ '../_react/createEmojiMartPickerFromData.js'
|
2018-12-18 00:43:51 -08:00
|
|
|
).then(getDefault)
|
2018-12-22 15:37:51 -08:00
|
|
|
|
|
|
|
export const importToast = () => import(
|
|
|
|
/* webpackChunkName: 'Toast.html' */ '../_components/toast/Toast.html'
|
|
|
|
).then(getDefault)
|