r-flow / src /nodes /AgentNode.tsx
ruv's picture
Create AgentNode.tsx
c1d6426 verified
raw
history blame contribute delete
352 Bytes
import React from 'react';
import { Handle, Position } from 'reactflow';
export function AgentNode({ data }) {
return (
<>
<Handle type="target" position={Position.Top} />
<div>
<strong>{data.label}</strong>
<div>{data.agent}</div>
</div>
<Handle type="source" position={Position.Bottom} />
</>
);
}