Update expo app to make it somewhat functional

This commit is contained in:
2026-03-26 12:36:18 -05:00
parent 56fe2a2af3
commit ff8c39dc75
18 changed files with 15732 additions and 7478 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,7 @@ type EventType =
| 'focusin'
| 'focusout';
export const useOnClickOutside = <T,>(
export const useOnClickOutside = <T extends Element>(
ref: React.RefObject<T | null> | React.RefObject<T | null>[],
handler: (event: MouseEvent | TouchEvent | FocusEvent) => void,
eventType: EventType = 'mousedown',