()
| 5296 | } |
| 5297 | |
| 5298 | const PopoverTestInnerRef = () => { |
| 5299 | const target = React.createRef<HTMLButtonElement>(); |
| 5300 | const container = React.createRef<HTMLDivElement>(); |
| 5301 | return ( |
| 5302 | <Popover target={target} container={container}> |
| 5303 | Yo! |
| 5304 | </Popover> |
| 5305 | ); |
| 5306 | }; |
| 5307 | |
| 5308 | const UncontrolledTooltipTestInnerRef = () => { |
| 5309 | const target = React.createRef<HTMLButtonElement>(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…