Implement a Tooltip component in React.
Requirements:
- Wraps a single child element.
- Accepts a
contentprop (string or node). - Displays the tooltip popup bubble upon hovering (mouseenter) or focusing (focus) the child element.
- Hides the popup bubble upon mouseleave or blur.