FPSMS-frontend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CreateWarehouseLoading.tsx 790 B

​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
​
1234567891011121314151617181920212223242526272829
  1. import Card from "@mui/material/Card";
  2. import CardContent from "@mui/material/CardContent";
  3. import Skeleton from "@mui/material/Skeleton";
  4. import Stack from "@mui/material/Stack";
  5. import React from "react";
  6. export const CreateWarehouseLoading: React.FC = () => {
  7. return (
  8. <>
  9. <Card>
  10. <CardContent>
  11. <Stack spacing={2}>
  12. <Skeleton variant="rounded" height={60} />
  13. <Skeleton variant="rounded" height={60} />
  14. <Skeleton variant="rounded" height={60} />
  15. <Skeleton
  16. variant="rounded"
  17. height={50}
  18. width={100}
  19. sx={{ alignSelf: "flex-end" }}
  20. />
  21. </Stack>
  22. </CardContent>
  23. </Card>
  24. </>
  25. );
  26. };
  27. export default CreateWarehouseLoading;