import {
Stack,
Group,
Box,
Container,
Divider,
Skeleton,
} from "@mantine/core";
const PlayerListItemSkeleton = () => {
return (
);
};
const PlayerStatsTableSkeleton = () => {
return (
{Array(10).fill(null).map((_, index) => (
{index < 9 && }
))}
);
};
export default PlayerStatsTableSkeleton;