I would like to add placeholder texture to select input using ReactJS, however my current attempt is not working.
My code looks like this:
<Input type="select" placeholder="placeholder">
<option>First option</option>
<option>second option</option>
<option>Thrid option</option>
</Input>
I am expecting the text "placeholder" to show up on the input field before any option has been selected, however the "first option" is showing by default.