logo

Pagination

The Pagination component enables the user to select a specific page from a range of pages.

Usage#

Demo#

import { Pagination } from "pigment-ui";
import { useState } from "react";

function PaginationDemo() {
  const [page, setPage] = useState(1);
  
  return (
    <Pagination total={10} page={page} onChange={setPage} />
  );
}
Edit this page