NERDDISCO's picture
refactor: restructure demo to examples/robot-control-web
ea49c9f
raw
history blame
169 Bytes
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}