refactor(lst): added side bar plus dummy menus

This commit is contained in:
2025-02-20 07:22:18 -06:00
parent 5f8943492e
commit 54b1b6081a
43 changed files with 1795 additions and 188 deletions

View File

@@ -0,0 +1,7 @@
import {cn} from "../../lib/utils";
function Skeleton({className, ...props}: React.ComponentProps<"div">) {
return <div data-slot="skeleton" className={cn("bg-primary/10 animate-pulse rounded-md", className)} {...props} />;
}
export {Skeleton};