Seed: nonprofit template (15 files)

This commit is contained in:
2026-07-23 22:13:59 +00:00
parent 420c0bc1f2
commit 1ea5eba0cb
+3
View File
@@ -0,0 +1,3 @@
export function cn(...inputs: Array<string | number | null | undefined | false>) {
return inputs.filter(Boolean).join(" ");
}