feat: Implement skeleton loading

This commit is contained in:
gpt-engineer-app[bot]
2025-10-10 15:18:02 +00:00
parent c4b3886ffc
commit a16154c3de
8 changed files with 171 additions and 35 deletions

View File

@@ -0,0 +1,15 @@
import { QueueItemSkeleton } from './QueueItemSkeleton';
interface QueueSkeletonProps {
count?: number;
}
export function QueueSkeleton({ count = 5 }: QueueSkeletonProps) {
return (
<div className="flex flex-col gap-6">
{Array.from({ length: count }).map((_, i) => (
<QueueItemSkeleton key={i} />
))}
</div>
);
}