Is there a way to pass formik form values from a child component to a parent component and handle form submission in parent component only. I have a use case where I\'m building
by using props you can achieve this.
Screen 1:
render( { this.setState({formProps: formProps}); }} /> )
Screen 2:
if (onValueChange) { onValueChange(formProps); }