mirror of
https://github.com/usetrmnl/byos_next.git
synced 2026-04-29 13:34:28 -07:00
fd284558fe
- 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
7 lines
168 B
TypeScript
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));
|
|
}
|