Add a skeleton for table component

This commit is contained in:
Alex Holliday
2025-01-29 15:05:45 -08:00
parent 2eeb8b6e4e
commit 6c3b026199
+14
View File
@@ -0,0 +1,14 @@
import { Skeleton } from "@mui/material";
const TableSkeleton = () => {
return (
<Skeleton
variant="rounded"
width="100%"
height="80%"
flex={1}
/>
);
};
export default TableSkeleton;