(nextProps)
| 16 | } |
| 17 | |
| 18 | componentWillReceiveProps(nextProps) { |
| 19 | if (nextProps.checked !== this.props.checked) { |
| 20 | this.setState({ checked: nextProps.checked }); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | render(){ |
| 25 | const { status } = this.props |
nothing calls this directly
no outgoing calls
no test coverage detected