Eugene

Results 1 comments of Eugene

I just wrap my component in `React.forwardRef` and pass props to inner component. And it works for me. ``` const TooltipChild = React.forwardRef( ({ someProp1, someProp2, ...props }: Props, ref:...