function CurrentForm() {
const { values, setFieldValue, handleSubmit } = useFormikContext();
return (
<form onSubmit={handleSubmit}>
<Input1 />
<Input2 />
<Input3 />
<Button />
</form >
);
}