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