This repository has no description
semble
/
src
/
webapp
/
features
/
follows
/
containers
/
contributedToCollectionsContainer
/
Skeleton.ContributedToCollectionsContainer.tsx
502 B
14 lines
1import CollectionCardSkeleton from '@/features/collections/components/collectionCard/Skeleton.CollectionCard';
2import { Container, SimpleGrid } from '@mantine/core';
3
4export default function ContributedToCollectionsContainerSkeleton() {
5 return (
6 <Container p={'xs'} size={'xl'}>
7 <SimpleGrid cols={{ base: 1, sm: 2, lg: 4 }} spacing="xs">
8 {Array.from({ length: 4 }).map((_, i) => (
9 <CollectionCardSkeleton key={i} />
10 ))}
11 </SimpleGrid>
12 </Container>
13 );
14}