form-meta.tsx 428 B

1234567891011121314151617181920
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { FormMeta } from '@flowgram.ai/free-layout-editor';
  6. import { SubCanvasRender } from '@flowgram.ai/free-container-plugin';
  7. const formHeight = 48;
  8. export const LoopFormRender = () => (
  9. <>
  10. LOOP
  11. <SubCanvasRender offsetY={-formHeight} />
  12. </>
  13. );
  14. export const formMeta: FormMeta = {
  15. render: LoopFormRender,
  16. };