zpsajst's picture
Initial commit with environment variables for API keys
2398be6
raw
history blame
115 Bytes
export function cn(...args: Array<string | false | null | undefined>) {
return args.filter(Boolean).join(" ");
}