(nextProps)
| 101 | } |
| 102 | |
| 103 | componentWillReceiveProps(nextProps) { |
| 104 | const { dateString } = this.state; |
| 105 | if (dateString && nextProps.displayValue) { |
| 106 | this.setState({ |
| 107 | dateString: '', |
| 108 | }); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | componentDidUpdate(prevProps) { |
| 113 | const { focused, isFocused } = this.props; |
no outgoing calls
no test coverage detected