引入 Tailwind CSS 和 shadcn/ui

This commit is contained in:
雨霖铃
2026-05-21 22:57:23 +08:00
parent bb27577278
commit 3eb00d8a29
14 changed files with 1034 additions and 3 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));
}