withFormik(): How to use handleChange
问题 Current platform: NodeJS (minimal), client-side React w/Redux, Formik, Yup. Given the following example code (not including the entire React Component code since it's irrelevant to the question): class RegisterPage extends React.Component { constructor(props) { super(props); } // (...) render () { <Form> <Field name="email" type="email" /> <Field name="password" type="password" /> <Field name="myCheckbox" type="checkbox" checked={this.props.values.myCheckbox} onChange={ ?????????? } /> </Form