(value: string)
| 107 | }; |
| 108 | |
| 109 | setValue(value: string) { |
| 110 | if (this.props.value === undefined) { |
| 111 | this.setState({ value }); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | handleChange = (e: React.ChangeEvent<HTMLInputElement>) => { |
| 116 | const { onChange } = this.props; |
no test coverage detected