import { BaseEdge, EdgeProps, getBezierPath, getStraightPath } from '@xyflow/react'; function MindMapEdge(props: EdgeProps) { const { sourceX, sourceY, targetX, targetY } = props; const [edgePath] = getBezierPath({ sourceX, sourceY, targetX, targetY, }); return ; } export default MindMapEdge;