mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 21:58:31 +00:00
6 lines
269 B
JavaScript
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} />;
|
|
}
|