Added shadcn setup

This commit is contained in:
Alexis
2024-04-01 11:56:03 +02:00
parent c1edf3b5ea
commit abc4d908f1
6 changed files with 411 additions and 132 deletions

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