Basic usage

Here's how you can show a basic tooltip with react-tiny-tooltip.

<Tooltip content="Hey there">Hover me 🙌</Tooltip>

Playground

Play around with the library here

import {Tooltip} from 'react-tiny-tooltip'
	 export default function App() {
	 return (
	 	<div style={{marginTop: 50, marginLeft: 50, display: "inline-block"}}>
	 		<Tooltip content="Hey there">
	 			Hover me 🙌
	 		</Tooltip>
	 	</div>
)
}