I used MaterialReactTable and I want to show just 5 items in each pagination. I set muiTablePaginationProps but I still have 10 items.How can I do?
<MaterialReactTable
columns={columns}
data={data.data}
muiTablePaginationProps={{
rowsPerPageOptions: [5],
rowsPerPage: 5,
}}
/>
Based on
material-react-table
documentation (Pagination Feature Guide) you should removerowsPerPage
frommuiTablePaginationProps
and addinitialState
property to MaterialReactTable component as follows:You can see image preview at here