(props)
| 12 | |
| 13 | class Input extends Component { |
| 14 | constructor (props) { |
| 15 | super(props); |
| 16 | this.state = { |
| 17 | value: props.value |
| 18 | }; |
| 19 | this.handleChange = this.handleChange.bind(this); |
| 20 | this.handleTrigger = this.handleTrigger.bind(this); |
| 21 | } |
| 22 | |
| 23 | componentWillReceiveProps (nextProps) { |
| 24 | let value = nextProps.value; |
nothing calls this directly
no outgoing calls
no test coverage detected