Form Composition Question
I'm using
useFieldContext() in each of the components and despite not registering them in my createFormHook() or using field.[ComponentName] under my AppField rendering function, they work as expected. Is this fully erroneous or more of a "it works but don't do that" situation?
Also tangential question while I'm here: Is there a more concise/efficient way to register each of my components without manually using
value={...} and onChange={...} for each one?