1234567891011121314151617181920212223 |
- import React from 'react'
- import loadable from 'utils/loadable'
- import { Skeleton } from 'antd'
- export const Widget = loadable(() => import('./'), {
- fallback: <Skeleton active paragraph={{ rows: 15 }} />
- })
- export const DataManagerWidget = loadable(() => import('./DataManaferWidget'), {
- fallback: <Skeleton active paragraph={{ rows: 15 }} />
- })
- export const DataShareServiceWidget = loadable(() => import('./DataShareServiceWidget'), {
- fallback: <Skeleton active paragraph={{ rows: 15 }} />
- })
- export const WidgetList = loadable(() => import('./List'), {
- fallback: <Skeleton active paragraph={{ rows: 15 }} />
- })
- export const Workbench = loadable(() => import('./components/Workbench'), {
- fallback: <Skeleton active paragraph={{ rows: 15 }} />
- })
|