使用shadcn重构

This commit is contained in:
2025-04-24 19:37:31 +08:00
parent 72f6893660
commit 2e3aed0038
9 changed files with 3863 additions and 5883 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))
}