mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 17:51:12 -05:00
16 lines
359 B
TypeScript
16 lines
359 B
TypeScript
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} index={i} />
|
|
))}
|
|
</div>
|
|
);
|
|
}
|