React Query Integration for Server State Sync in Clinet #245

Merged
admin merged 60 commits from react-query into main 2025-07-11 11:32:19 +00:00
Showing only changes of commit 1b5fa173f0 - Show all commits

View File

@ -14,7 +14,7 @@ const usePagination = (data, itemsPerPage) => {
setCurrentPage(pageNumber);
};
return { currentPage, totalPages, currentItems, paginate };
return { currentPage, totalPages, currentItems, paginate,setCurrentPage };
};
export default usePagination;