()
| 21 | }, |
| 22 | |
| 23 | componentDidMount() { |
| 24 | const {delay, onClose} = this.props |
| 25 | if (delay !== 0) { |
| 26 | this._timer = setTimeout(() => { |
| 27 | this.clearTimer() |
| 28 | onClose() |
| 29 | }, delay) |
| 30 | } |
| 31 | }, |
| 32 | |
| 33 | componentWillUnmount() { |
| 34 | this.clearTimer() |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…