(e)
| 96 | |
| 97 | const handleColorChange: JSX.CustomEventHandlersCamelCase<HTMLInputElement>[`onInput`] = |
| 98 | (e) => { |
| 99 | const newColor = e.target.value |
| 100 | setConfigValue(`backgroundColor`, newColor) |
| 101 | } |
| 102 | |
| 103 | const handleSubmit: JSX.CustomEventHandlersCamelCase<HTMLFormElement>[`onSubmit`] = |
| 104 | (e) => { |
nothing calls this directly
no test coverage detected