from API I received adCategory value (as String). I'd like to use that prop to set up default value for this select tag. For example, while rendering form component, I'd love to have Books being selected, or Furniture (depending on what I will receive from API response).
<select
name="adCategory"
value={values.adCategory}
onChange={handleChange}>
<option value="clothes">Clothes</option>
<option value="appliances">Appliances</option>
<option value="books">Books</option>
<option value="furniture">Furniture</option>
<option value="other">Other</option>
</select>