Files
cms-server/client/src/components/workbenchCards/card-skeleton.tsx
2026-01-01 03:47:55 +00:00

10 lines
163 B
TypeScript

import { Skeleton } from '../ui/skeleton';
export function CardSkeleton() {
return (
<Skeleton
className="gap-6 rounded-xl py-6 h-full"
/>
);
}