feat: add TanStack Start integration

This commit is contained in:
LovelessCodes
2024-10-29 21:36:06 +01:00
committed by GitHub
parent f9e605d441
commit a744354d88
43 changed files with 2905 additions and 217 deletions

View File

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