This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / features / platforms / bluesky / container / blueskyMentionsContainer / Skeleton.BlueskyMentionsContainer.tsx
512 B 17 lines
1import UrlCardSkeleton from '@/features/cards/components/urlCard/Skeleton.UrlCard'; 2import { Grid, GridCol, Stack } from '@mantine/core'; 3 4export default function BlueskyMentionsContainerSkeleton() { 5 return ( 6 <Stack> 7 <Grid gap="sm" mx={'auto'} maw={600}> 8 {/* not necessary to check if navbar is open */} 9 {Array.from({ length: 8 }).map((_, i) => ( 10 <GridCol key={i} span={12}> 11 <UrlCardSkeleton /> 12 </GridCol> 13 ))} 14 </Grid> 15 </Stack> 16 ); 17}