(props)
| 9 | |
| 10 | class Button extends React.Component { |
| 11 | constructor(props) { |
| 12 | super(props); |
| 13 | |
| 14 | this.state = { |
| 15 | confirming: false, |
| 16 | }; |
| 17 | |
| 18 | this.timeout = null; |
| 19 | } |
| 20 | |
| 21 | componentWillUnmount() { |
| 22 | if (this.timeout) { |
nothing calls this directly
no outgoing calls
no test coverage detected