mirror of
https://github.com/mosh-hamedani/helpdesk.git
synced 2026-05-21 11:58:19 +02:00
15 lines
405 B
TypeScript
15 lines
405 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
export default function TicketDetailSkeleton() {
|
|
return (
|
|
<div className="space-y-4">
|
|
<Skeleton className="h-8 w-96" />
|
|
<div className="flex gap-2">
|
|
<Skeleton className="h-5 w-16 rounded-full" />
|
|
<Skeleton className="h-5 w-24 rounded-full" />
|
|
</div>
|
|
<Skeleton className="h-40 w-full" />
|
|
</div>
|
|
);
|
|
}
|