ShadCN setup

This commit is contained in:
Julien Valverdé
2024-07-19 01:06:29 +02:00
parent 061272ee0c
commit ea2fc9f23f
6 changed files with 170 additions and 12 deletions

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