react-data-table-component

How to show tooltip in react data table component


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


Solution

  • 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>
            ),
    
     }
    

    Ref: https://github.com/atomiks/tippyjs-react