mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-15 00:01:08 +00:00
16 lines
413 B
TypeScript
16 lines
413 B
TypeScript
import {
|
|
Skeleton as InnerSkeleton,
|
|
createSettingFieldView,
|
|
PopupContext,
|
|
PopupPipe,
|
|
Workbench as InnerWorkbench,
|
|
} from '@alilc/lowcode-editor-skeleton';
|
|
|
|
export default function getSkeletonCabin(skeleton: InnerSkeleton) {
|
|
return {
|
|
createSettingFieldView,
|
|
PopupContext,
|
|
PopupPipe,
|
|
Workbench: (props: any) => <InnerWorkbench {...props} skeleton={skeleton} />, // hijack skeleton
|
|
};
|
|
} |