"use client"; import { Card, CardFrame, CardFrameFooter, CardPanel } from "@coss/ui/components/card"; import { Skeleton } from "@coss/ui/components/skeleton"; import { WebhookFormHeader } from "./webhook-form-header"; import { WebhookTestHeader } from "./webhook-test-header"; type WebhookFormSkeletonProps = { titleKey?: "add_webhook" | "edit_webhook"; }; export const WebhookFormSkeleton = ({ titleKey = "add_webhook" }: WebhookFormSkeletonProps = {}) => { return ( <>
); };