2
0

editor.tsx 332 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 Editor = React.lazy(() =>
  8. import('@flowgram.ai/demo-node-form').then((module) => ({
  9. default: module.Editor,
  10. }))
  11. );
  12. export { Editor };