feat(frontend): Scaffold React project with Vite, Tailwind CSS v4, and shadcn/ui

This commit is contained in:
Yunxiao Xu
2026-02-11 19:20:08 -08:00
parent 0dfdef738d
commit 5d0130731d
19 changed files with 9672 additions and 0 deletions

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))
}