(e: Event)
| 13 | const [isChecked, setIsChecked] = createSignal(props.checked || false) |
| 14 | const descriptionId = `${createUniqueId()}-description` |
| 15 | |
| 16 | const handleChange = (e: Event) => { |
| 17 | const checked = (e.target as HTMLInputElement).checked |
| 18 | setIsChecked(checked) |
| 19 | props.onChange?.(checked) |
| 20 | } |
| 21 | |
| 22 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected