import { forwardRef, HTMLAttributes } from 'react'; import { cn } from '@/lib/utils'; export const BaseNode = forwardRef< HTMLDivElement, HTMLAttributes & { selected?: boolean } >(({ className, selected, ...props }, ref) => (
)); BaseNode.displayName = 'BaseNode';