import React from 'react'; import { Box, Container, Skeleton, Grid } from '@mui/material'; import { DashboardContainer } from './styled'; import { LoadingSkeletonProps } from './types'; const LoadingSkeleton: React.FC = ({ itemCount = 8, itemHeight = 200, headerHeight = 80 }) => { return ( {Array.from({ length: itemCount }).map((_, index) => ( ))} ); }; export default LoadingSkeleton;