This commit is contained in:
Kakabay 2023-03-12 20:39:21 +05:00
parent 636e5d08bc
commit ba0815cb8d
1 changed files with 0 additions and 1 deletions

View File

@ -9,7 +9,6 @@ interface IProps {
} }
const Pagination = ({ pages, activePage, setActivePage }: IProps) => { const Pagination = ({ pages, activePage, setActivePage }: IProps) => {
// console.log(pages, activePage + 1);
const handleOnClick = (page: number) => { const handleOnClick = (page: number) => {
setActivePage(page); setActivePage(page);
}; };