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