reccur the set of fields in react code example
Example 1: input text react 2020
function LoginForm() {
const [email, setEmail] = React.useState("");
const [password, setPassword] = React.useState("");
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
api.login(email, password);
}
return (
);
}
Example 2: setting state value with variable value for non form control
set custom state for non form control which will passed on submit and retrieved part of this.state on submit
{this.state.SInstName = srepoSelect.instname}