'react material along with react infinite scroll component table body

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



Solution 1:[1]

<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>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Sundara Moorthy Anandh