Last active
July 10, 2022 14:10
-
-
Save koss-lebedev/6848adc63e3cc429bcc70ff35ae1e3bc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Props = { | |
onSubmit: (email: string, password: string) => Promise<void> | |
} | |
const LoginForm = ({ onSubmit }: Props) => { | |
const [email, setEmail] = useState('') | |
const [password, setPassword] = useState('') | |
const handleSubmit = async (evt) => { | |
evt.preventDefault() | |
await onSubmit(email, password) | |
} | |
return ( | |
<form onSubmit={handleSubmit}> | |
<input type="email" value={email} onChange={e => setEmail(e.target.value)} /> | |
<input type="password" value={password} onChange={e => setPassword(e.target.value)} /> | |
<button type="submit">Log in</button> | |
</form> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment