better chat (#416)

* better chat

* fixes

* fix
This commit is contained in:
Chris Tate
2026-02-11 14:17:53 -06:00
committed by GitHub
parent ffe29b8a26
commit 66a11aeb4c
9 changed files with 2267 additions and 284 deletions
+6
View File
@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}