1
0
mirror of https://github.com/Fayorg/calendrier-avant.git synced 2026-05-27 17:18:38 +02:00

everything

This commit is contained in:
timhaller
2023-12-05 21:44:33 +01:00
parent 20d9c0f11a
commit 43a7f49c2d
10 changed files with 289 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))
}