"use client"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { PanelCard } from "@calcom/ui/components/card"; import { SkeletonText } from "@calcom/ui/components/skeleton"; export function InvoicesTableSkeleton() { const { t } = useLocale(); return (
{/* Header row */}
{/* Data rows */} {Array.from({ length: 5 }).map((_, i) => (
))}
); }