I'm using react hook form, and I'm looking for a way to inject custom props to the handleSubmit
method returned by the hook. The reason I need to do this is my component acts as a Consumer
for a state library, and I want to update the state after submitting the form. I may also want to pass props to the method.
From looking at the API, it seems like this isn't possible. Any thoughts on a workaround or how to do this?
I don't use this library, but it seems that
getValues
function returned fromuseForm
hook opens the way to synchronize Your component state with form data stored in the "react-hook-form":docs