index.tsx 296 B

123456789101112
  1. import React from 'react';
  2. import './index.less';
  3. // https://github.com/web-infra-dev/rspress/issues/553
  4. const FixedFeatureOverview = React.lazy(() =>
  5. import('@flowgram.ai/demo-fixed-layout').then((module) => ({
  6. default: module.DemoFixedLayout,
  7. }))
  8. );
  9. export { FixedFeatureOverview };