import React from 'react';
import Tabs from 'vestarplus/Pagination';
const MyTabsComponent = () => {
const [currentPage, setCurrentPage] = useState(1);
const handlePageChange = (page) => {
setCurrentPage(page);
// You can fetch data or perform actions based on the new page here
};
// Generate a list of people's names (replace this with your actual data)
const peopleList = Array.from(
{ length: 90 },
(_, index) => Person {index + 1}
);
// Calculate the range of items to display for the current page
const itemsPerPage = 10;
const startIndex = (currentPage - 1) * itemsPerPage;
const endIndex = startIndex + itemsPerPage;
const displayedPeople = peopleList.slice(startIndex, endIndex);
return (
<div>
<ul>{displayedPeople.map((person, index) => ( <li key={index}>{person}</li> ))}</ul>
<Pagination totalItems={peopleList.length} itemsPerPage={itemsPerPage} onPageChange={handlePageChange} arrowLeft="<" arrowRight=">" />
<Pagination totalItems={peopleList.length} itemsPerPage={itemsPerPage} onPageChange={handlePageChange} arrowLeft="<" arrowRight=">" disabled />
</div>
);
};
export default MyTabsComponent;