Alternative web application for the pdsadmin command
at main 167 B view raw
1import { clsx } from "clsx"; 2import { twMerge } from "tailwind-merge"; 3 4export const cn = (...inputs: Parameters<typeof clsx>) => { 5 return twMerge(clsx(inputs)); 6};