(nextProps)
| 283 | }, |
| 284 | |
| 285 | componentWillReceiveProps(nextProps) { |
| 286 | if (this.props.value !== nextProps.value) { |
| 287 | this.setState({ |
| 288 | value: nextProps.value |
| 289 | }); |
| 290 | } |
| 291 | }, |
| 292 | |
| 293 | render() { |
| 294 | const {children} = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…