Monorepo for Wisp.place. A static site hosting service built on top of the AT Protocol.
1import { clsx, type ClassValue } from "clsx" 2import { twMerge } from "tailwind-merge" 3 4export function cn(...inputs: ClassValue[]) { 5 return twMerge(clsx(inputs)) 6}