Gateprep / frontend /src /lib /utils.js
banu4prasad's picture
add: ShadcnUI and fix mobile layout
eac6aad
Raw
History Blame Contribute Delete
137 Bytes
import { clsx } from "clsx";
import { twMerge } from "tailwind-merge"
export function cn(...inputs) {
return twMerge(clsx(inputs));
}