選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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