(props)
| 9 | |
| 10 | Counter1x: class Counter1x extends React.Component { |
| 11 | constructor(props) { |
| 12 | super(props); |
| 13 | this.state = { counter: 0 }; |
| 14 | } |
| 15 | |
| 16 | increment() { |
| 17 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected