React SelectHandling select drop-downs in React. React Select In HTML, the selected option in a drop-down list is defined with the selected attribute. In React, the selected value is defined with a value attribute on the select tag to make it a controlled component. Example<select value={myCar} onChange={handleChange}>...</select>Try it Yourself PreviousNext