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