configure locales, fix bugs

This commit is contained in:
juancmandev
2024-07-31 16:42:52 -06:00
parent 373a4af4b1
commit 57cb8933e2
16 changed files with 173 additions and 103 deletions

View File

@ -1,6 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(inputs));
}