feat(poc): test commit

This commit is contained in:
Björn Meyer 2023-07-12 14:24:43 +02:00
parent 184f008f6f
commit 8dcf6db08f

View File

@ -12,7 +12,7 @@ export default function Pagination({ itemsPerPage, itemsTotal, currentPage }: {
const sort = currentParams.get('sort');
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 page = event.selected;
const newPage = page + 1;