Add view-only RSVPs page and View RSVPs button

This commit is contained in:
2025-04-30 14:26:04 -04:00
parent 47af7f5d88
commit ffcf959992
3 changed files with 281 additions and 0 deletions

View File

@@ -86,6 +86,18 @@ const EventList: React.FC = () => {
</Typography>
</CardContent>
<CardActions>
<Button
onClick={(e) => {
e.stopPropagation();
navigate(`/events/${event.slug}/view`);
}}
color="primary"
aria-label="view rsvps"
variant="text"
sx={{ ml: 1 }}
>
View RSVPs
</Button>
<Button
onClick={(e) => {
e.stopPropagation();