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