Add shadcn/ui + Storybook

This commit is contained in:
cte
2025-01-30 12:50:09 -08:00
parent 886070de2d
commit 4cf455ed39
17 changed files with 2024 additions and 120 deletions

View File

@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}