You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import { Skeleton, Stack } from "@mui/material";
-
- const ItemTracingLoading: React.FC = () => (
- <Stack spacing={2} sx={{ mt: 2 }}>
- <Skeleton variant="rounded" height={120} />
- <Skeleton variant="rounded" height={200} />
- <Skeleton variant="rounded" height={320} />
- </Stack>
- );
-
- export default ItemTracingLoading;
|