Initial commit

This commit is contained in:
Bizzle Wizzle
2024-10-26 20:00:25 -04:00
commit 8177684254
41 changed files with 8358 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}