(props)
| 43 | |
| 44 | Counter100x: class Counter100x extends React.Component { |
| 45 | constructor(props) { |
| 46 | super(props); |
| 47 | this.state = { counter: 0 }; |
| 48 | } |
| 49 | |
| 50 | increment() { |
| 51 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected