Initial shadcn project with typescript

This commit is contained in:
Tom
2023-12-30 09:00:54 +00:00
commit d191f8fb6f
38 changed files with 7748 additions and 0 deletions

6
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))
}