import { cn } from '@/lib/utils'; import { HTMLAttributes } from 'react'; type IProps = HTMLAttributes & { selected?: boolean }; export function NodeWrapper({ children, className, selected }: IProps) { return (
{children}
); }