From 4a1ba48f89aec31916b8ebf7b54583e7d9d04a00 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:14:55 +0000 Subject: [PATCH] Seed: project-management template (23 files) --- src/lib/utils.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/lib/utils.ts diff --git a/src/lib/utils.ts b/src/lib/utils.ts new file mode 100644 index 0000000..270b836 --- /dev/null +++ b/src/lib/utils.ts @@ -0,0 +1,3 @@ +export function cn(...inputs: Array) { + return inputs.filter(Boolean).join(" "); +}