DEV Community

Cover image for Make the materialUI TextField & Select look alike in the form
Dezina
Dezina

Posted on

Make the materialUI TextField & Select look alike in the form

const [place, setPlace] = useState("");


value={place}
onChange={e => setPlace(e.target.value)}
variant="outlined"
label="City"
select

{city.map((city, _id) => (

{city.name}

))}

{
city.map((city, ) => {

})
}

Top comments (0)