A callback method called once Form.reset() is finished. Useful for reseting the values of the controlled fields, as Form.reset() affects only uncontrolled fields.
Definition
type OnReset = ({
fields: Object, // The state of the fields
form: ReactComponent // Reference to the Form component
}) => void