File size: 320 Bytes
9621170
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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} />
    </>
  );
}