Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
import clsx, { type ClassValue } from 'clsx'
|
|
|
|
export function cn(...inputs: ClassValue[]): string {
|
|
return clsx(inputs)
|
|
}
|