import { useMutation } from '@apollo/react-hooks' import { USER_REQUEST_PASSWORD } from './graphql' import { useFormHandler, TextInput } from '../form/forms' import { FormEvent } from 'react' const initialValues = { email: '', password: '' } const RequestPassword = () => { const [login, { loading, error }] = useMutation(USER_REQUEST_PASSWORD) const { inputProps } = useFormHandler(initialValues) return (
) } export default RequestPassword