import { Pagination } from "@progressiveui/react"
Pagination when managing large datasets that need to be broken down into smaller, more manageable chunks.itemsPerPageText prop to indicate the number of items per page.pageRangeText and itemRangeText props for providing users with context on their current position within the data.<PaginationbackwardText="Backward"forwardText="Forward"itemsPerPageText="Items per page:"itemRangeText={(min, max, total) => `${min}-${max} of ${total} items`}pageRangeText={(current, total) => `${current} of ${total} pages`}pageSizes={[5, 10, 20]}totalItems={100}/>
This example sets up a Pagination component for navigating through 100 items, with options to display 5, 10, or 20 items per page.