mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-23 06:17:10 +00:00
20 lines
615 B
TypeScript
20 lines
615 B
TypeScript
import { Card, CardContent, CardFooter } from "@/components/ui/card";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
const CompetitionSkeleton = () => {
|
|
return (
|
|
<Card className="overflow-hidden">
|
|
<Skeleton className="h-48 w-full" />
|
|
<CardContent className="p-4 pt-5">
|
|
<Skeleton className="h-6 w-3/4 mb-2" />
|
|
<Skeleton className="h-6 w-1/2" />
|
|
</CardContent>
|
|
<CardFooter className="p-4 pt-0 flex gap-2">
|
|
<Skeleton className="h-6 w-20" />
|
|
<Skeleton className="h-6 w-24" />
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
export default CompetitionSkeleton |