Patient_facing_app / src /lib /utils.js
benedictturner's picture
Configured Next.js app as a Docker image for hugging face deployment
df2016d
raw
history blame contribute delete
137 Bytes
import { clsx } from "clsx";
import { twMerge } from "tailwind-merge"
export function cn(...inputs) {
return twMerge(clsx(inputs));
}