clarified paths and added lib/utils.ts folder

This commit is contained in:
2025-02-06 17:17:01 -07:00
parent 83fe7ac8d0
commit f0598ed85e
10 changed files with 24 additions and 36 deletions

3
lib/utils.ts Normal file
View File

@@ -0,0 +1,3 @@
export function cn(...classes: (string | undefined | null | false)[]): string {
return classes.filter(Boolean).join(" ");
}