()
| 22 | export default function Case1() { |
| 23 | const [value, setValue] = useState<boolean>(false); |
| 24 | const toggleRadio = () => { |
| 25 | setValue(value => !value); |
| 26 | } |
| 27 | const selectRadio = () => { |
| 28 | setValue(true); |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected