mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-20 08:28:48 -05:00
15 lines
216 B
React
15 lines
216 B
React
import { Stack, Skeleton } from "@mui/material";
|
|
|
|
const SkeletonLayout = () => {
|
|
return (
|
|
<Stack>
|
|
<Skeleton
|
|
variant="rectangular"
|
|
height={"90vh"}
|
|
/>
|
|
</Stack>
|
|
);
|
|
};
|
|
|
|
export default SkeletonLayout;
|