(e: React.ChangeEvent<HTMLInputElement>)
| 94 | const titleColor = getComplementaryColor(backgroundColor) |
| 95 | |
| 96 | const handleColorChange = (e: React.ChangeEvent<HTMLInputElement>) => { |
| 97 | const newColor = e.target.value |
| 98 | setConfigValue(`backgroundColor`, newColor) |
| 99 | } |
| 100 | |
| 101 | const handleSubmit = (e: FormEvent) => { |
| 102 | e.preventDefault() |
nothing calls this directly
no test coverage detected