mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-31 14:18:28 -06:00
15 lines
223 B
JavaScript
15 lines
223 B
JavaScript
import { Stack, Skeleton } from "@mui/material";
|
|
|
|
export const SkeletonLayout = () => {
|
|
return (
|
|
<Stack>
|
|
<Skeleton
|
|
variant="rectangular"
|
|
height={"90vh"}
|
|
/>
|
|
</Stack>
|
|
);
|
|
};
|
|
|
|
export default SkeletonLayout;
|