Files
Checkmate/client/src/Pages/StatusPage/Create/Components/Skeleton/index.jsx
T
2026-01-12 23:57:39 +00:00

15 lines
216 B
React

import { Stack, Skeleton } from "@mui/material";
const SkeletonLayout = () => {
return (
<Stack>
<Skeleton
variant="rectangular"
height={"90vh"}
/>
</Stack>
);
};
export default SkeletonLayout;