Files
nixcn-cms/client/src/components/workbenchCards/card-skeleton.tsx
Noa Virellia 414d0e1ecf
All checks were successful
Build Backend (NixCN CMS) TeamCity build finished
Build Frontend (NixCN CMS) TeamCity build finished
refactor(client): optimize suspense components
Signed-off-by: Noa Virellia <noa@requiem.garden>
2026-01-01 10:38:57 +08: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"
/>
);
}