(nextProps)
| 15 | } |
| 16 | |
| 17 | componentWillReceiveProps (nextProps) { |
| 18 | if (nextProps.value !== this.props.value) { |
| 19 | this.setState({ value: nextProps.value }); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | add () { |
| 24 | let value = this.state.value, |
nothing calls this directly
no outgoing calls
no test coverage detected