/* eslint-disable */ // @ts-nocheck import { memo } from "react"; import { Handle, Position } from "reactflow"; type NodeProps = { data: { label: string }; selected: boolean; }; type SubFlowNodeProps = NodeProps & { prefix: string; }; const SubFlowNodeInner = ({ data: { label }, prefix, selected, }: SubFlowNodeProps) => { return ( <>
{prefix} {label}
); }; export const SubFlowNode = memo(SubFlowNodeInner); export const StartSubFlowNode = ({ ...props }: NodeProps) => ( ); export const EndSubFlowNode = ({ ...props }: NodeProps) => ( );