2
0

fixed-layout-simple.tsx 373 B

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