From cc1ec311a5edefcce7c919c2629636394f425241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Aguilera=20Gonz=C3=A1lez?= Date: Tue, 24 Feb 2026 07:50:58 +0100 Subject: [PATCH 1/2] refactor: --- src/lib/utils.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/utils.ts b/src/lib/utils.ts index 0189d30..7aa221d 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -4,3 +4,7 @@ import {twMerge} from "tailwind-merge" export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)) } + +export function sumar(a, b) { + return a + b; +} \ No newline at end of file From 937ec4e00d8b69277d4b80c35610ca31098da9cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Aguilera=20Gonz=C3=A1lez?= Date: Tue, 24 Feb 2026 07:53:24 +0100 Subject: [PATCH 2/2] =?UTF-8?q?refactor:Implementar=20una=20funci=C3=B3n?= =?UTF-8?q?=20de=20suma=20en=20el=20archivo=20utils.ts=20y=20asegurarse=20?= =?UTF-8?q?de=20que=20el=20proyecto=20est=C3=A9=20configurado=20correctame?= =?UTF-8?q?nte=20para=20soportar=20TypeScript.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit