Build, Test, and Push CFDM Docker Image / test (push) Failing after 51s
Build, Test, and Push CFDM Docker Image / build-and-push (push) Has been skipped
Build, Test, and Push CFDM Docker Image / update-wiki (push) Has been skipped
Build, Test, and Push CFDM Docker Image / create-release (push) Has been skipped
20 lines
595 B
TypeScript
20 lines
595 B
TypeScript
import { Skeleton } from '@cfdm/ui/components/skeleton'
|
|
|
|
export function GroupsBoardSkeleton() {
|
|
return (
|
|
<div className="grid w-full grid-cols-1 gap-2 lg:grid-cols-2">
|
|
{Array.from({ length: 4 }).map((_, groupIndex) => (
|
|
<div
|
|
key={groupIndex}
|
|
className="flex flex-col gap-2 rounded-lg border border-border px-2 py-2"
|
|
>
|
|
<Skeleton className="h-10 w-full" />
|
|
{Array.from({ length: 3 }).map((__, rowIndex) => (
|
|
<Skeleton key={rowIndex} className="h-10 w-full" />
|
|
))}
|
|
</div>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|