()
| 3474 | } |
| 3475 | |
| 3476 | render() { |
| 3477 | return ( |
| 3478 | <div> |
| 3479 | {this.state.popovers.map((popover, i) => { |
| 3480 | return <PopoverItem key={i} item={popover} id={i} />; |
| 3481 | })} |
| 3482 | </div> |
| 3483 | ); |
| 3484 | } |
| 3485 | } |
| 3486 | |
| 3487 | class PopoverExampleFlipFade extends React.Component<any, any> { |
nothing calls this directly
no outgoing calls
no test coverage detected