({ data }: NodePorps)
| 23 | } |
| 24 | |
| 25 | function BlueNode({ data }: NodePorps) { |
| 26 | return <div style={{background: 'blue', width: '50px', height: '50px', textAlign: 'center', color: '#fff'}}> |
| 27 | <Handle type="source" position={Position.Bottom} /> |
| 28 | <Handle type="target" position={Position.Top} /> |
| 29 | |
| 30 | <div>{data.label}</div> |
| 31 | </div> |
| 32 | } |
| 33 | |
| 34 | function CustomEdge({ |
| 35 | id, |
nothing calls this directly
no outgoing calls
no test coverage detected