12 lines
459 B
Plaintext
12 lines
459 B
Plaintext
|
|
<FormControl>
|
||
|
|
<FormLabel id="demo-radio-buttons-group-label">Gender</FormLabel>
|
||
|
|
<RadioGroup
|
||
|
|
aria-labelledby="demo-radio-buttons-group-label"
|
||
|
|
defaultValue="female"
|
||
|
|
name="radio-buttons-group"
|
||
|
|
>
|
||
|
|
<FormControlLabel value="female" control={<Radio />} label="Female" />
|
||
|
|
<FormControlLabel value="male" control={<Radio />} label="Male" />
|
||
|
|
<FormControlLabel value="other" control={<Radio />} label="Other" />
|
||
|
|
</RadioGroup>
|
||
|
|
</FormControl>
|