Open AlonBe opened 6 years ago
The following code doesn't popup the tooltip: `<Tooltip overlay={this.getOverlay} placement={'bottomLeft'}>
<React.Fragment> { anyInnerChild } </React.Fragment>
`
But when working with "native" components which are not React Fragments - it works
As per docs,
Tooltip requires child node accepts onMouseEnter, onMouseLeave, onFocus, onClick event.
onMouseEnter
onMouseLeave
onFocus
onClick
That's why React.Fragment does not work
React.Fragment
The following code doesn't popup the tooltip: `<Tooltip overlay={this.getOverlay} placement={'bottomLeft'}>
`
But when working with "native" components which are not React Fragments - it works