DEV Community

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

Posted on

1

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)

Image of Datadog

The Essential Toolkit for Front-end Developers

Take a user-centric approach to front-end monitoring that evolves alongside increasingly complex frameworks and single-page applications.

Get The Kit

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay