I can't stretch the table to the entire height of the block, even with one record
I am using PrimeReact in my app, here is my code:
<DataTable
value={dataArr}
headerColumnGroup={headerGroup}
paginator
rows={1}
rowsPerPageOptions={[10, 25, 50]}
rowHover
responsiveLayout="scroll"
showGridlines
stripedRows
resizableColumns
>
....
</DataTable>
I think you want either style={{minHeight: '95vh'}}
or style={{minHeight: '100%'}}
depending on your needs