(props, context)
| 347 | |
| 348 | class Child extends Component { |
| 349 | constructor(props, context) { |
| 350 | super(props, context); |
| 351 | this.state = { show: false }; |
| 352 | inst = this; |
| 353 | } |
| 354 | handleMount() {} |
| 355 | render(_, { show }) { |
| 356 | if (!show) return <div id="div" ref={this.handleMount} />; |
nothing calls this directly
no test coverage detected