GodSpeed / frontend /src /lib /utils.ts
Samyuktha24's picture
feat: add Zustand stores for filters and UI state management
9dfccd9
import { clsx, type ClassValue } from 'clsx'
import { twMerge } from 'tailwind-merge'
/** shadcn-compatible className helper */
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}