import { Skeleton } from "@mui/material"; export default function Loading() { return (
{Array.from({ length: 6 }).map((_, idx) => ( ))}
); }