aboodhay's picture
feat: unified Space - serve frontend + backend in one container
8521cd6
raw
history blame contribute delete
169 Bytes
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}