(props: any)
| 3400 | class PopoverItem extends React.Component<any, any> { |
| 3401 | state: any; |
| 3402 | constructor(props: any) { |
| 3403 | super(props); |
| 3404 | |
| 3405 | this.toggle = this.toggle.bind(this); |
| 3406 | this.state = { |
| 3407 | popoverOpen: false, |
| 3408 | }; |
| 3409 | } |
| 3410 | |
| 3411 | toggle() { |
| 3412 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected