Entorno linteado y typechecado

This commit is contained in:
2025-12-19 16:32:42 -06:00
parent b38fe2d8b4
commit ad9e9c1619
12 changed files with 42 additions and 36 deletions

View File

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