(e: React.ChangeEvent<HTMLTextAreaElement>)
| 48 | }; |
| 49 | |
| 50 | const handleChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => { |
| 51 | handleSetValue(e.target.value); |
| 52 | resolveOnChange(innerRef.current!, e, onChange); |
| 53 | }; |
| 54 | |
| 55 | const otherProps = omit(props, ['value']); |
| 56 |
nothing calls this directly
no test coverage detected