import { useState } from 'react'; export const LoginForm = ({ onLogin }) => { const [login, setLogin] = useState("") const [password, setPassword] = useState("") return (
setLogin(e.target.value)} /> setPassword(e.target.value)} />
) }