`const ToolTip: React.FC<TooltipProps> = (props) => { const { title, placement, showArrow = true } = props return <RcTooltip overlay={title} visible={true} showArrow={showArrow} placement="bottomRight" /> }` if placement="bottomRight" and visible=true, tooltip will show at the top.