Couldn't find an example or solution in the docs. Is there an clean/efficient way to pass form input props to child components containing form inputs? The return type of getInputProps() is:
{ value: any; onChange: any; checked?: any; error?: any; onFocus?: any; onBlur?: any; }
Is this the type that should be passed to child components?