()
| 45 | }, |
| 46 | |
| 47 | handleAutoPlay(){ |
| 48 | const {index, count} = this.state; |
| 49 | if (index < count) { |
| 50 | this.setState({ |
| 51 | index: index + 1 |
| 52 | }, () => this.addTransition(this.resetPosition) ); |
| 53 | } |
| 54 | }, |
| 55 | |
| 56 | resetAutoplay(){ |
| 57 | const {autoPlay, delay} = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…