Files
todo/lib/utils.ts
Mayne0213 3806344351 INIT(app): initial commit with FSD architecture
- Initialize Todo app structure
- Implement Feature-Sliced Design
2025-10-01 11:24:40 +09:00

7 lines
166 B
TypeScript

import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}