import { Box, Card, CardContent, CardMedia, Skeleton, } from "@mui/material"; import Grid from '@mui/material/Grid'; import React from "react"; export const ExerciseGridSkeleton = () => { return ( ( {[...Array(21)].map((skeletonBase, idx) => ( ))} ) ); };