20 lines
389 B
TypeScript
20 lines
389 B
TypeScript
import * as React from "react";
|
|
import CircularProgress from "@mui/material/CircularProgress";
|
|
import Box from "@mui/material/Box";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
marginY: 10,
|
|
width: 1,
|
|
}}
|
|
>
|
|
<CircularProgress />
|
|
</Box>
|
|
);
|
|
}
|