(props)
| 11 | |
| 12 | class TextInput extends PureComponent { |
| 13 | constructor(props) { |
| 14 | super(props); |
| 15 | |
| 16 | autoBindReact(this); |
| 17 | |
| 18 | this.state = { |
| 19 | isFocused: props.highlightOnFocus && props.autoFocus, |
| 20 | }; |
| 21 | } |
| 22 | |
| 23 | handleBlur() { |
| 24 | const { onBlur } = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected