(prevProps, prevState)
| 112 | } |
| 113 | |
| 114 | componentDidUpdate(prevProps, prevState) { |
| 115 | if (prevState.activeIndex === this.state.activeIndex) return; |
| 116 | this.setInterval(); |
| 117 | } |
| 118 | |
| 119 | componentWillUnmount() { |
| 120 | this.clearInterval(); |
nothing calls this directly
no test coverage detected