Experiment charts

This commit is contained in:
2025-06-03 00:14:21 +02:00
parent 18e7dbc7d6
commit b165c774bd
13 changed files with 1625 additions and 96 deletions

6
ui/src/lib/utils.ts Normal file
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))
}