(props)
| 12 | |
| 13 | class CarouselItem extends React.Component { |
| 14 | constructor(props) { |
| 15 | super(props); |
| 16 | |
| 17 | this.state = { |
| 18 | startAnimation: false, |
| 19 | }; |
| 20 | |
| 21 | this.onEnter = this.onEnter.bind(this); |
| 22 | this.onEntering = this.onEntering.bind(this); |
| 23 | this.onExit = this.onExit.bind(this); |
| 24 | this.onExiting = this.onExiting.bind(this); |
| 25 | this.onExited = this.onExited.bind(this); |
| 26 | } |
| 27 | |
| 28 | onEnter(node, isAppearing) { |
| 29 | this.setState({ startAnimation: false }); |
nothing calls this directly
no outgoing calls
no test coverage detected