'use client'; import { cn } from '@djangocfg/ui-core/lib'; export interface TreeSkeletonProps { rows?: number; className?: string; } export function TreeSkeleton({ rows = 6, className }: TreeSkeletonProps) { return (
{Array.from({ length: rows }).map((_, i) => (
))}
); }