<select>
{items.map((item, index) => {
return (
<option value={item.id} key={index}>{}</option>
)
})}
</select>
Select box in reactjs shows me warning as
Warning: Use the
defaultValueorvalueprops on<select>instead of settingselectedon<option>.