(props: any)
| 4622 | |
| 4623 | state: any; |
| 4624 | constructor(props: any) { |
| 4625 | super(props); |
| 4626 | this.state = { activeIndex: 0 }; |
| 4627 | this.next = this.next.bind(this); |
| 4628 | this.previous = this.previous.bind(this); |
| 4629 | this.goToIndex = this.goToIndex.bind(this); |
| 4630 | this.onExiting = this.onExiting.bind(this); |
| 4631 | this.onExited = this.onExited.bind(this); |
| 4632 | } |
| 4633 | |
| 4634 | onExiting() { |
| 4635 | this.animating = true; |
nothing calls this directly
no outgoing calls
no test coverage detected