I am trying to use tippyjs-react in table cells, but tooltips don't appear.
I added tooltip into Cell option in React Table:
Cell: ({ value }) => {
return (
<div>
<Tippy content="Tooltip content">
<span>{value}</span>
</Tippy>
</div>
);
}