cal.pub0.org/packages/features/webhooks/components/WebhookListSkeleton.tsx

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>
);
}