diff --git a/src/components/Admin/resources/competition/event-registration/EventRegistrationCreate.tsx b/src/components/Admin/resources/competition/event-registration/EventRegistrationCreate.tsx index 9b866f25..75a7cd34 100644 --- a/src/components/Admin/resources/competition/event-registration/EventRegistrationCreate.tsx +++ b/src/components/Admin/resources/competition/event-registration/EventRegistrationCreate.tsx @@ -30,10 +30,19 @@ export const EventRegistrationCreate: FC = () => { - - - + ) } + +const EventReferenceInput = () => { + const {watch} = useFormContext() + const grade = watch('grade') + + return ( + + + + ) +}