default
Function: default()
default(
props
,deprecatedLegacyContext
?):ReactNode
Defined in: src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:48
A modal dialog for add a volunteer for an event.
Parameters
props
deprecatedLegacyContext?
any
Deprecated
See
Returns
ReactNode
The rendered modal component.
The VolunteerCreateModal
component displays a form within a modal dialog for adding a volunteer.
It includes fields for selecting user.
The modal includes:
- A header with a title and a close button.
- A form with:
- A multi-select dropdown for selecting user be added as volunteer.
- A submit button to create or update the pledge.
On form submission, the component:
- Calls
addVolunteer
mutation to add a new Volunteer.
Success or error messages are displayed using toast notifications based on the result of the mutation.