import Box from '@mui/joy/Box'; import CircularProgress from '@mui/joy/CircularProgress'; import * as React from 'react'; export default function CircularProgressDeterminate() { const [progress, setProgress] = React.useState(0); React.useEffect(() => { const timer = setInterval(() => { setProgress((prevProgress) => (prevProgress >= 100 ? 0 : prevProgress + 10)); }, 800); return () => { clearInterval(timer); }; }, []); return ( ); }