John-Jiang commited on
Commit
9ffc6c2
·
1 Parent(s): b27e586

init commit

Browse files
Files changed (1) hide show
  1. web/lib/utils.ts +6 -0
web/lib/utils.ts ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import { clsx, type ClassValue } from "clsx"
2
+ import { twMerge } from "tailwind-merge"
3
+
4
+ export function cn(...inputs: ClassValue[]) {
5
+ return twMerge(clsx(inputs))
6
+ }