()
| 4576 | } |
| 4577 | |
| 4578 | render() { |
| 4579 | return ( |
| 4580 | <div> |
| 4581 | <p> |
| 4582 | Somewhere in here is a{' '} |
| 4583 | <a href="#" ref={this.refFn}> |
| 4584 | tooltip |
| 4585 | </a> |
| 4586 | . |
| 4587 | </p> |
| 4588 | <Tooltip |
| 4589 | placement="bottom-start" |
| 4590 | isOpen={this.state.tooltipOpen} |
| 4591 | target={this.element} |
| 4592 | > |
| 4593 | Hello world! |
| 4594 | </Tooltip> |
| 4595 | </div> |
| 4596 | ); |
| 4597 | } |
| 4598 | } |
| 4599 | |
| 4600 | class Example115 extends React.Component<any, any> { |
nothing calls this directly
no outgoing calls
no test coverage detected