import { Input, Layout } from 'antd' import { useState } from 'react' import { Button } from '../../elements/Button' export const ForgotPassword = () => { const [email, setEmail] = useState('') const handleClick = () => { console.log(email) } return (

Forgot Password

setEmail(e.target.value)} type="email" />
) }