Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

18 wiersze
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;