Skip to content

Commit

Permalink
chore: removed lib from gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
sourabh-josh committed Sep 24, 2024
1 parent 053547d commit eccd9c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dist/
downloads/
eggs/
.eggs/
lib/
# lib/
lib64/
parts/
sdist/
Expand Down
6 changes: 6 additions & 0 deletions app/src/lib/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";

export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}

0 comments on commit eccd9c6

Please sign in to comment.