fix(autogpt_builder): Unignore lib/ and add lib/utils.ts

This commit is contained in:
Reinier van der Leer
2024-07-04 17:40:59 -06:00
parent f359ed0983
commit b7a90ce768
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}