feat: 加入塑料前端 (#262)

This commit is contained in:
ᴀᴍᴛᴏᴀᴇʀ
2025-02-19 01:47:09 +08:00
committed by GitHub
parent 59305c0bb4
commit d3b4559b2d
37 changed files with 1830 additions and 0 deletions

6
web/src/lib/utils.ts Normal file
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));
}