import React, { useState } from 'react' import { useNavigate } from 'react-router-dom' import Header from '../../../components/Header/Header' import Input from '../../../components/Input/Input' import SubmitButton from '../../../components/SubmitButton/SubmitButton' import styles from './Address.module.css' const Address = () => { const [address, setAddress] = useState('') const navigate = useNavigate() return ( <>
setAddress(e.target.value)} placeholder="Enter your House Number / Apartment" /> setAddress(e.target.value)} placeholder="Enter your Area / Locality" /> setAddress(e.target.value)} placeholder="Enter your Village / Town" />
setAddress(e.target.value)} placeholder="Enter the Street / Road" /> setAddress(e.target.value)} placeholder="Enter the Landmark" /> setAddress(e.target.value)} placeholder="Enter your District" /> setAddress(e.target.value)} placeholder="Enter your area Pincode" />
setAddress(e.target.value)} placeholder="Enter your State" /> navigate('/enrollment/photo')} /> ) } export default Address