infinite-canvas.tsx 327 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. import './index.less';
  7. const InfiniteCanvas = React.lazy(() =>
  8. import('@flowgram.ai/demo-playground').then((module) => ({
  9. default: module.PlaygroundEditor,
  10. }))
  11. );
  12. export { InfiniteCanvas };