mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +00:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
|
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>
|
||
|
);
|
||
|
}
|