()
| 4101 | } |
| 4102 | |
| 4103 | render() { |
| 4104 | return ( |
| 4105 | <div> |
| 4106 | <p> |
| 4107 | Somewhere in here is a{' '} |
| 4108 | <a href="#" id="TooltipExample"> |
| 4109 | tooltip |
| 4110 | </a> |
| 4111 | . |
| 4112 | </p> |
| 4113 | <Tooltip |
| 4114 | placement="end" |
| 4115 | isOpen={this.state.tooltipOpen} |
| 4116 | target="TooltipExample" |
| 4117 | toggle={this.toggle} |
| 4118 | > |
| 4119 | Hello world! |
| 4120 | </Tooltip> |
| 4121 | </div> |
| 4122 | ); |
| 4123 | } |
| 4124 | } |
| 4125 | |
| 4126 | class Example103 extends React.Component<any, any> { |
nothing calls this directly
no outgoing calls
no test coverage detected