showing results for - " 40tippyjs 2freact"
Milena
28 Feb 2018
1import React from 'react';
2import Tippy from '@tippyjs/react';
3import 'tippy.js/dist/tippy.css'; // optional
4
5const StringContent = () => (
6  <Tippy content="Hello">
7    <button>My button</button>
8  </Tippy>
9);
10export default StringContent