feat(template): show template in templates view

This commit is contained in:
Leons Aleksandrovs
2025-07-10 21:05:10 +03:00
parent e35bf46dac
commit 16269e9669
5 changed files with 62 additions and 38 deletions
+13
View File
@@ -0,0 +1,13 @@
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
)
}
export { Skeleton }