import { Handle, NodeProps, Position } from 'reactflow'; import styles from './index.less'; export function TextUpdaterNode({ data, isConnectable = true, }: NodeProps<{ label: string }>) { return (
{data.label}
); }