'use client'; import { cn } from '@djangocfg/ui-core/lib'; export interface TreeEmptyProps { children: React.ReactNode; className?: string; } export function TreeEmpty({ children, className }: TreeEmptyProps) { return (
{children}
); }