import { Handle, Position } from '@xyflow/react' /** * Abstract handler node — represents a handler in the inheritance chain * that is not directly bound to a route. Minimal styling, emphasizes the hierarchy. */ export default function AbstractHandlerNode({ data }) { return (
{/* Extends from parent handler */} {/* Extends to child handler */}
ABSTRACT
{data.name}
) }