import { LinearProgress, Box } from '@mui/material'; export default function ProgressBar({ current, total }) { const value = total > 0 ? (current / total) * 100 : 0; return ( ); }