使用forwardRef

在ts的React项目中使用 forwardRef来传递 ref:

  1. const MapTooltip = React.forwardRef<HTMLDivElement, IMapTooltip> ((ref, props) => {}

js中:

  1. const MapTooltip = forwardRef((ref, props) => {})