Add navigation to RSVP form from event cards

This commit is contained in:
Your Name
2025-04-29 14:01:29 -04:00
parent 72837de000
commit e4e20c5bcf
2 changed files with 15 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ const App: React.FC = () => {
<Routes>
<Route path="/" element={<EventList />} />
<Route path="/create" element={<EventForm />} />
<Route path="/events/:slug" element={<RSVPForm />} />
<Route path="/events/:slug/rsvp" element={<RSVPForm />} />
</Routes>
</div>
</main>