2
0
Files
cal/calcom/packages/features/webhooks/components/WebhookListSkeleton.tsx
2024-08-09 00:39:27 +02:00

16 lines
440 B
TypeScript

import { SkeletonContainer } from "@calcom/ui";
import WebhookListItemSkeleton from "./WebhookListItemSkeleton";
export default function WebhookListSkeleton() {
return (
<SkeletonContainer>
<div className="border-subtle divide-subtle mb-8 mt-6 divide-y rounded-md border">
<WebhookListItemSkeleton />
<WebhookListItemSkeleton />
<WebhookListItemSkeleton />
</div>
</SkeletonContainer>
);
}