index.tsx 232 B

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