alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix: "added by" skeleton
author
pdelfan
date
3 months ago
(Apr 2, 2026, 3:18 PM -0700)
commit
1cbee21b
1cbee21b1fe749c2016bbca4761b0828505255b4
parent
298ad615
298ad61517ca9ca41be68c4733c088649eec8753
+6
-13
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
features
semble
containers
sembleLibrariesContainer
Skeleton.SembleLibrariesContainer.tsx
+6
-13
src/webapp/features/semble/containers/sembleLibrariesContainer/Skeleton.SembleLibrariesContainer.tsx
View file
Reviewed
···
1
1
-
import { Grid, GridCol } from '@mantine/core';
1
1
+
import { Grid, GridCol, Stack } from '@mantine/core';
2
2
import ProfileCardSkeleton from '@/features/profile/components/profileCard/Skeleton.ProfileCard';
3
3
4
4
export default function SembleLibrariesContainerSkeleton() {
5
5
return (
6
6
-
<Grid gutter="xs">
7
7
-
<GridCol
8
8
-
span={{
9
9
-
base: 12,
10
10
-
}}
11
11
-
>
12
12
-
<ProfileCardSkeleton />
13
13
-
<ProfileCardSkeleton />
14
14
-
<ProfileCardSkeleton />
15
15
-
<ProfileCardSkeleton />
16
16
-
</GridCol>
17
17
-
</Grid>
6
6
+
<Stack gap={'xs'}>
7
7
+
{Array.from({ length: 8 }).map((_, i) => (
8
8
+
<ProfileCardSkeleton key={i} />
9
9
+
))}
10
10
+
</Stack>
18
11
);
19
12
}