Files
Mangle Kuo fd284558fe Refactor and clean up project structure
- Removed unused files and consolidated code
- Updated package scripts to use Biome for formatting
- Simplified and standardized UI component implementations
- Cleaned up action and API route implementations
- Improved type definitions and utility functions
- Removed deprecated client and database initialization files
2025-03-11 00:24:38 +00:00

7 lines
168 B
TypeScript

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