I'm trying to use react infinite scroll inside react material table. I tried using it but i could only wrap the whole table and the scrolling effects the whole page and i want the headers to stay sticky and only the table body to infinite scroll any solution? thanks
<TableContainer>
<Table sx={{
height: '80vh' // set a height
}}>
<TableHeader stickyHeader> // to stick header to the top of table container
// header
</TableHeader>
<TableBody>
//body
</TableBody>
</Table>
</TableContainer>