2023-10-08 22:58:22 +08:00

16 lines
414 B
TypeScript

import Backdrop from "@mui/material/Backdrop";
import CircularProgress from "@mui/material/CircularProgress";
export default function Loading() {
return (
<>
<Backdrop
sx={{ color: '#fff', zIndex: (theme) => theme.zIndex.modal + 1 }}
open={true}
>
<CircularProgress color="inherit" />
</Backdrop>
</>
)
}