feat(poc): test commit

This commit is contained in:
Björn Meyer 2023-07-13 12:19:38 +02:00
parent 8550185eae
commit b6cff9ba01

View File

@ -20,7 +20,7 @@ export default function Pagination({
const sort = currentParams.get('sort'); const sort = currentParams.get('sort');
const pageCount = Math.ceil(itemsTotal / itemsPerPage); const pageCount = Math.ceil(itemsTotal / itemsPerPage);
// Invoke when user click to request another page. // Invoke when user click to request another page. test
const handlePageClick = (event: clickEvent) => { const handlePageClick = (event: clickEvent) => {
const page = event.selected; const page = event.selected;
const newPage = page + 1; const newPage = page + 1;