Init shadcn, Make Sidebar

This commit is contained in:
암냥 2025-09-28 15:50:16 +09:00
commit fbd8fd0c6a
61 changed files with 5835 additions and 138 deletions

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 }