index.tsx 393 B

1234567891011121314151617
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import React from 'react';
  6. import './index.less';
  7. // https://github.com/web-infra-dev/rspress/issues/553
  8. const FreeLayoutSimple = React.lazy(() =>
  9. import('@flowgram.ai/demo-free-layout-simple').then((module) => ({
  10. default: module.DemoFreeLayout,
  11. }))
  12. );
  13. export { FreeLayoutSimple };