style: formatted and added example env

This commit is contained in:
André Brito
2025-01-03 16:47:31 -04:00
committed by Carl-Gerhard Lindesvärd
parent 1dfa079b1e
commit acc675bd36
8 changed files with 106 additions and 102 deletions

View File

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