You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 regels
493 B

  1. import {Box, CircularProgress, Grid} from "@mui/material";
  2. const LoadingComponent = () => {
  3. return (
  4. <Grid item xs={12} md={12} lg={12} justifyContent="space-between" alignItems="center">
  5. <Box
  6. display="flex"
  7. justifyContent="center"
  8. alignItems="center"
  9. // autoHeight={true}
  10. >
  11. <CircularProgress />
  12. </Box>
  13. </Grid>
  14. )
  15. }
  16. export default LoadingComponent;