add shadcn/ui + docs

This commit is contained in:
Michi 2025-04-13 10:20:40 +02:00
parent c1cbd0b0d7
commit db91ca0269
11 changed files with 452 additions and 23 deletions

6
my-app/src/lib/utils.ts Normal file
View file

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