| import React from 'react'; | |
| import { Handle, Position } from 'reactflow'; | |
| export function ModelNode({ data }) { | |
| return ( | |
| <> | |
| <Handle type="target" position={Position.Top} /> | |
| <div> | |
| <strong>{data.label}</strong> | |
| </div> | |
| <Handle type="source" position={Position.Bottom} /> | |
| </> | |
| ); | |
| } |