mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
11 lines
273 B
TypeScript
11 lines
273 B
TypeScript
import React from 'react';
|
|
|
|
// https://github.com/web-infra-dev/rspress/issues/553
|
|
const FixedLayoutSimple = React.lazy(() =>
|
|
import('@flowgram.ai/demo-fixed-layout-simple').then((module) => ({
|
|
default: module.DemoFixedLayout,
|
|
}))
|
|
);
|
|
|
|
export { FixedLayoutSimple };
|