feat: switch to react aria and replace many components

This commit is contained in:
Aarnav Tale 2024-04-29 20:31:29 -04:00
parent cbecf85979
commit 3abd617a90
No known key found for this signature in database
11 changed files with 536 additions and 298 deletions

4
app/utils/cn.ts Normal file
View file

@ -0,0 +1,4 @@
import { type ClassValue, clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs))