I have an array like this:
["Daniel", "Adam", "Charlie", "Brad"]
I want to put that array into in react. So i expected the results like this
<select>
<option> Daniel </option>
<option> Adam </option>
<option> Charlie </option>
<option> Brad </option>
</select>
How I can solve it? Any answer would be appreciated.