import type { ReactNode } from 'react'; export interface LoadingSkeletonProps { rows?: number; className?: string; } export function LoadingSkeleton({ rows = 3, className = '' }: LoadingSkeletonProps): ReactNode { return (
{Array.from({ length: rows }).map((_, i) => (
))}
); }