import { Container, Grid, GridCol, Group, Skeleton, Stack, } from '@mantine/core'; import ProfileConnectionItemSkeleton from '@/features/connections/components/profileConnectionItem/Skeleton.ProfileConnectionItem'; export default function ProfileConnectionsContainerSkeleton() { return ( {Array.from({ length: 3 }).map((_, i) => ( ))} ); }