feat: init

This commit is contained in:
2024-08-06 16:14:45 +08:00
parent e9a475f2de
commit 511de1c9ae
22 changed files with 5868 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))
}