If I wanna replace the options
<option value="A">Apple</option>
<option value="B">Banana</option>
in the given example by the use of an array in a react jsx file, how would I proceed?
<select value="B">
<option value="A">Apple</option>
<option value="B">Banana</option>
</select>