This repository has no description
semble
/
src
/
webapp
/
features
/
collections
/
components
/
collectionSelector
/
Skeleton.CollectionSelector.tsx
352 B
13 lines
1import { Loader, Skeleton, Stack } from '@mantine/core';
2
3export default function CollectionSelectorSkeleton() {
4 return (
5 <Stack gap={'xs'}>
6 <Skeleton w={'100%'} h={50} />
7 <Skeleton w={'100%'} h={50} />
8 <Skeleton w={'100%'} h={50} />
9 <Skeleton w={'100%'} h={50} />
10 <Skeleton w={'100%'} h={50} />
11 </Stack>
12 );
13}