Merge pull request #84 from devamitranjan/FIX_ISSUE_82

fix: increased the default number of pagesize
This commit is contained in:
Mohamed Marrouchi
2024-09-25 17:11:00 +01:00
committed by GitHub

View File

@@ -34,7 +34,7 @@ export const usePagination = (
rowCount: number = -1,
initialPaginationState: GridPaginationModel = {
page: 0,
pageSize: 5,
pageSize: 10,
},
initialSortState?: GridSortModel,
hasCount: boolean = true,