If you are new to react virtuoso , it can be a struggle in trying to customise the table component in react virtuoso. I have gone through the documentation and after a bit of hassle got to customize almost every part of the table. Every part of the table can be customized by passing specific props to the virtuoso table component. It has the following props.
Components:
This prop is of type object which contains the following components. All of them should be wrapped with forward ref as they receive ref as well.
Table: This should return <table> tag with any custom styles. It receives props and use that to render the children.
TableHead: This should return <thead> tag with any custom styles. It receives props and use that to render the children
TableRow: This should return <tr> tag with any custom styles. It receives props and use that to render the children
TableFoot: This should return <tfoot> tag with any custom styles. It receives props and use that to render the children
fixedHeaderContent:
This is a component prop used to render table head content with fixed position while scrolling. This should be present if the TableHead has to work where you can render custom <thead>. The content of this is passed as children to the TableHead. You can return empty and just use TableHead with content..
itemContent:
This is a component prop used to render the tbody row content. This content is passed as children to TableRow.
fixedFooterContent:
This is a component prop and the return value is passed as children to TableFoot.
So far it's working with a lot of tweaking. There might be some other reason than what I mentioned in how each prop is used. Below is a basic example of it. You can build on top of this and make changes specific to your case.