nice navigation and clean with authentication/login and such

This commit is contained in:
talksik
2022-03-18 10:36:46 -04:00
parent 9950a69efa
commit 1da12edde1
3 changed files with 22 additions and 3 deletions
@@ -0,0 +1,11 @@
import { Skeleton } from "@mui/material";
export default function SkeletonLoader() {
return (
<div>
<Skeleton variant="text" width={210} />
<Skeleton variant="circular" width={40} height={40} />
<Skeleton variant="rectangular" width={210} height={118} />
</div>
);
}