I'm trying to use react-perfect-scrollbar on react-table but it doesn't work, it does on a custom table.
<PerfectScrollbar>
<Table className='table'>
<thead className='table-head'><tr>{head}</tr></thead>
<tbody className='DashboardCard-table-body'>{body}</tbody>
</Table>
</PerfectScrollbar>
I tried this:
<PerfectScrollbar>
<ReactTable data={data} columns={columns} />
</PerfectScrollbar>
It should show the new scrollbar but it doesn't.. haven't found information anywhere.