frontAnswerer/lib/ui_kit/LoadingSkeleton.tsx

16 lines
269 B
TypeScript
Raw Normal View History

import { Skeleton } from "@mui/material";
export default function LoadingSkeleton() {
2024-05-31 16:41:18 +00:00
return (
<Skeleton
component="div"
variant="rectangular"
sx={{
bgcolor: "grey",
width: "100%",
height: "100%",
}}
/>
);
}