Co-authored-by: Hongtao Lye <codert.sn@gmail.com> Co-authored-by: liuyi <forehalo@gmail.com> Co-authored-by: LongYinan <lynweklm@gmail.com> Co-authored-by: X1a0t <405028157@qq.com> Co-authored-by: JimmFly <yangjinfei001@gmail.com> Co-authored-by: Peng Xiao <pengxiao@outlook.com> Co-authored-by: xiaodong zuo <53252747+zuoxiaodong0815@users.noreply.github.com> Co-authored-by: DarkSky <25152247+darkskygit@users.noreply.github.com> Co-authored-by: Qi <474021214@qq.com> Co-authored-by: danielchim <kahungchim@gmail.com>
36 lines
894 B
TypeScript
36 lines
894 B
TypeScript
import { lazy } from 'react';
|
|
|
|
export const Provider = lazy(() =>
|
|
import('../components/cloud/provider').then(({ Provider }) => ({
|
|
default: Provider,
|
|
}))
|
|
);
|
|
|
|
export const NewWorkspaceSettingDetail = lazy(() =>
|
|
import('../components/affine/new-workspace-setting-detail').then(
|
|
({ WorkspaceSettingDetail }) => ({
|
|
default: WorkspaceSettingDetail,
|
|
})
|
|
)
|
|
);
|
|
|
|
export const BlockSuitePageList = lazy(() =>
|
|
import('../components/blocksuite/block-suite-page-list').then(
|
|
({ BlockSuitePageList }) => ({
|
|
default: BlockSuitePageList,
|
|
})
|
|
)
|
|
);
|
|
|
|
export const PageDetailEditor = lazy(() =>
|
|
import('../components/page-detail-editor').then(({ PageDetailEditor }) => ({
|
|
default: PageDetailEditor,
|
|
}))
|
|
);
|
|
|
|
export const WorkspaceHeader = lazy(() =>
|
|
import('../components/workspace-header').then(({ WorkspaceHeader }) => ({
|
|
default: WorkspaceHeader,
|
|
}))
|
|
);
|