MCPcopy Create free account
hub / github.com/developmentseed/stac-react / PaginationButton

Function PaginationButton

example/src/pages/Main/ItemList.jsx:8–14  ·  view source on GitHub ↗
({ disabled, onClick, children })

Source from the content-addressed store, hash-verified

6import { Button } from '../../components/buttons';
7
8function PaginationButton({ disabled, onClick, children }) {
9 return (
10 <Button disabled={disabled} onClick={onClick} className="bg-slate-500 text-white">
11 {children}
12 </Button>
13 );
14}
15
16PaginationButton.propTypes = {
17 disabled: T.bool,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected