React component for Tippy.js 2.x.
npm install react-tippy2
See docs
for simple example. In docs
folder, run npm run dev
import Tippy2 from 'react-tippy2'
const App = () => {
return (
<Tippy2 title='This is a tooltip!'></Tippy2>
)
}
class Html extends React.Component {
render () {
return (
<div>This is html Content</div>
)
}
}
<Tippy2 title='This is a tooltip!' html={<Html />}></Tippy2>