'use client'; import { Skeleton } from '@/components/ui/skeleton'; function StatSkeleton() { return (
); } function DetectionLogSkeleton() { return (
); } export function VideoResultsSkeleton() { return (
{Array.from({ length: 3 }).map((_, index) => ( ))}
{Array.from({ length: 5 }).map((_, index) => ( ))}
{Array.from({ length: 5 }).map((_, index) => ( ))}
); }