Jade (Rose) Rowland bbb88a2302 accessibility
2025-02-21 20:03:17 -05:00

6 lines
269 B
JavaScript

import { Incrementor } from '../incrementor/Incrementor';
export function Pagination({ currPage, onPageChange, className, ...incrementorProps }) {
return <Incrementor min={1} value={currPage} onChange={onPageChange} className={className} {...incrementorProps} />;
}