index.tsx 269 B

12345678910
  1. import React from 'react';
  2. // https://github.com/web-infra-dev/rspress/issues/553
  3. const FreeLayoutSimple = React.lazy(() =>
  4. import('@flowgram.ai/demo-free-layout-simple').then((module) => ({
  5. default: module.DemoFreeLayout,
  6. }))
  7. );
  8. export { FreeLayoutSimple };