React RadioHandling radio buttons in React. React Radio Buttons Radio buttons allow a user to select only one option from a list. They are grouped by the name attribute. In React, you control the selected value via the parent form state. Example<input type="radio" value="Male" checked={gender === "Male"} onChange={handleChange} />Try it Yourself PreviousNext