function CurrentForm() {
const { values, setFieldValue, handleSubmit } = useFormikContext();
return (
<form onSubmit={handleSubmit}>
<Input1 />
<Input2 />
<Input3 />
<Button />
</form >
);
}
let i = 0
let j = 0
while (i < 20 || j < 20) {
i++
j++
console.log("piu", i, j)
}
<Switch>
<Route path='/landing' component={() => {
window.location.href = 'https://example.com/1234';
return null;
}}>
</Route>
</Switch>