refactor: move frontend code into view

This commit is contained in:
syntaxbullet
2026-07-02 22:50:58 +02:00
parent f9ec3e5528
commit 64838e85ba
11 changed files with 8 additions and 6 deletions

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