(event, newValue)
| 53 | |
| 54 | export const InputSlider = ({ value, onChange }) => { |
| 55 | const handleSliderChange = (event, newValue) => onChange(newValue) |
| 56 | |
| 57 | const handleInputChange = (event) => { |
| 58 | onChange(event.target.value === '' ? 0 : Number(event.target.value)) |
nothing calls this directly
no test coverage detected