Is your feature request related to a problem? Please describe.
Yes.
There is currently no easy way to make the table header sticky. There is also not an easy way to make the horizontal scrollbar visible at all times.
Describe the solution you'd like
I'd like to make the \
Additional context
If you omit the styles of the \
Most helpful comment
The reason I closed it is because there is a very easy solution that I found. First you need to set the header style to sticky:
options={{ headerStyle: { position: 'sticky', top: 0 } }}
This alone does not do anything. Next you need to set the body height of the table in order to trigger a vertical scrollbar to appear:
options={{ headerStyle: { position: 'sticky', top: 0 }, maxBodyHeight: '650px' }}