|
- import {Box, CircularProgress, Grid} from "@mui/material";
-
- const LoadingComponent = () => {
- return (
- <Grid item xs={12} md={12} lg={12} justifyContent="space-between" alignItems="center">
- <Box
- display="flex"
- justifyContent="center"
- alignItems="center"
- // autoHeight={true}
- >
- <CircularProgress />
- </Box>
- </Grid>
- )
- }
- export default LoadingComponent;
|