()
| 4141 | } |
| 4142 | |
| 4143 | render() { |
| 4144 | return ( |
| 4145 | <div> |
| 4146 | <p> |
| 4147 | Sometimes you need to allow users to select text within a{' '} |
| 4148 | <a href="#" id="DisabledAutoHideExample"> |
| 4149 | tooltip |
| 4150 | </a> |
| 4151 | . |
| 4152 | </p> |
| 4153 | <Tooltip |
| 4154 | placement="top" |
| 4155 | isOpen={this.state.tooltipOpen} |
| 4156 | autohide={false} |
| 4157 | target="DisabledAutoHideExample" |
| 4158 | toggle={this.toggle} |
| 4159 | > |
| 4160 | Try to select this text! |
| 4161 | </Tooltip> |
| 4162 | </div> |
| 4163 | ); |
| 4164 | } |
| 4165 | } |
| 4166 | |
| 4167 | class TooltipItem extends React.Component<any, any> { |
nothing calls this directly
no outgoing calls
no test coverage detected