I'm display a data table using react data table component , I wanted to show tooltip or title, when mouse over doing on a name in headers. https://www.npmjs.com/package/react-data-table-component
You can create your own tooltip component or use @tippyjs/react
package and then wrap the <Tippy />
component around the element, supplying the tooltip's content as the content prop. Example is as below:
{
name: (
<Tippy content="Hello">
<div>Hello</div>
</Tippy>
),
}