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