File size: 350 Bytes
e2b35f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react';
import { Handle, Position } from 'reactflow';

export function ToolNode({ data }) {
  return (
    <>
      <Handle type="target" position={Position.Top} />
      <div>
        <strong>{data.label}</strong>
        <div>{data.tool}</div>
      </div>
      <Handle type="source" position={Position.Bottom} />
    </>
  );
}