1.1.6 • Published 8 years ago
react-tippy2 v1.1.6
react-tippy2
React component for Tippy.js 2.x.
Installation
npm install react-tippy2Example
See docs for simple example. In docs folder, run npm run dev
Basic Usage
import Tippy2 from 'react-tippy2'
const App = () => {
return (
<Tippy2 title='This is a tooltip!'></Tippy2>
)
}With HTML content
class Html extends React.Component {
render () {
return (
<div>This is html Content</div>
)
}
}
<Tippy2 title='This is a tooltip!' html={<Html />}></Tippy2>