import { cn } from '@/lib/utils'; import { HTMLAttributes, PropsWithChildren } from 'react'; export function NodeWrapper({ children, className, }: PropsWithChildren & HTMLAttributes) { return (
{children}
); }