feat:初始化业务目录

This commit is contained in:
2026-05-08 18:03:43 +08:00
parent 06a4a79fee
commit 765b84e2b4
34 changed files with 5828 additions and 35 deletions

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