install shadcn

This commit is contained in:
2024-09-03 20:58:07 +02:00
parent 75d1ec7fd7
commit 21284a24ef
6 changed files with 237 additions and 148 deletions

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