()
| 12 | } |
| 13 | |
| 14 | render() { |
| 15 | return ( |
| 16 | <div> |
| 17 | {this.state.count} |
| 18 | {this.props.children && <span>{this.props.children}</span>} |
| 19 | </div> |
| 20 | ); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | export default Counter; |
nothing calls this directly
no outgoing calls
no test coverage detected