event rsvp popup

This commit is contained in:
2025-07-05 20:29:09 -04:00
parent 2d62fb7d48
commit de40c78f47
7 changed files with 282 additions and 14 deletions

11
types.d.ts vendored
View File

@@ -53,3 +53,14 @@ interface EventData {
eventGuests: any[]
todos: Todo[]
}
interface EventGuest {
id: string
guestId: string
rsvp: 'YES' | 'NO' | 'PENDING'
guest: {
fName: string
lName: string
email?: string | null
}
}