A deployable markdown editor that connects with your self hosted files and lets you edit in a beautiful interface
at main 6 lines 166 B view raw
1import { type ClassValue, clsx } from "clsx" 2import { twMerge } from "tailwind-merge" 3 4export function cn(...inputs: ClassValue[]) { 5 return twMerge(clsx(inputs)) 6}