14 lines
283 B
Plaintext
14 lines
283 B
Plaintext
|
|
<Radio
|
||
|
|
checked={selectedValue === 'a'}
|
||
|
|
onChange={handleChange}
|
||
|
|
value="a"
|
||
|
|
name="radio-buttons"
|
||
|
|
inputProps={{ 'aria-label': 'A' }}
|
||
|
|
/>
|
||
|
|
<Radio
|
||
|
|
checked={selectedValue === 'b'}
|
||
|
|
onChange={handleChange}
|
||
|
|
value="b"
|
||
|
|
name="radio-buttons"
|
||
|
|
inputProps={{ 'aria-label': 'B' }}
|
||
|
|
/>
|