feat(web): bootstrap react vite tailwind shadcn stack

This commit is contained in:
2026-04-05 02:31:18 +08:00
parent d7f27eaf1e
commit 579d63d39d
25 changed files with 3986 additions and 11 deletions
+6
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));
}