import React, {FC} from "react"; import {Position} from "@xyflow/system"; import {colors} from "./tree/Colors"; import {NodeProps} from "@xyflow/react"; import {Handle} from "./tree/Handle"; import {Anchor} from "./tree/store"; import {NodeWithAnchors} from "./NodeWithAnchors"; export const FirstPassingNodeBranch: FC = ({id, data, ...props}) => { const color = colors.purple return
The first passing node here
}