mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 20:08:37 +00:00
30 lines
759 B
TypeScript
30 lines
759 B
TypeScript
import { lazy } from 'react';
|
|
|
|
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,
|
|
}))
|
|
);
|