()
| 3374 | } |
| 3375 | |
| 3376 | render() { |
| 3377 | return ( |
| 3378 | <div> |
| 3379 | <Button id="Popover1" onClick={this.toggle}> |
| 3380 | Launch Popover |
| 3381 | </Button> |
| 3382 | <Popover |
| 3383 | placement="bottom" |
| 3384 | isOpen={this.state.popoverOpen} |
| 3385 | target="Popover1" |
| 3386 | toggle={this.toggle} |
| 3387 | onClick={() => {}} |
| 3388 | > |
| 3389 | <PopoverHeader>Popover Title</PopoverHeader> |
| 3390 | <PopoverBody> |
| 3391 | Sed posuere consectetur est at lobortis. Aenean eu leo quam. |
| 3392 | Pellentesque ornare sem lacinia quam venenatis vestibulum. |
| 3393 | </PopoverBody> |
| 3394 | </Popover> |
| 3395 | </div> |
| 3396 | ); |
| 3397 | } |
| 3398 | } |
| 3399 | |
| 3400 | class PopoverItem extends React.Component<any, any> { |
nothing calls this directly
no outgoing calls
no test coverage detected