judge4c/src/components/loading.tsx

10 lines
208 B
TypeScript
Raw Normal View History

2025-03-11 14:40:21 +00:00
import { Skeleton } from "@/components/ui/skeleton";
export function Loading() {
return (
<div className="h-full w-full p-2">
<Skeleton className="h-full w-full rounded-3xl" />
</div>
);
}