MCPcopy
hub / github.com/watsonbox/exportify / PaginatorProps

Interface PaginatorProps

src/components/Paginator.tsx:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import React from "react"
2
3interface PaginatorProps {
4 currentPage: number,
5 totalRecords: number,
6 pageLimit: number,
7 onPageChanged: (page: number) => void
8}
9
10class Paginator extends React.Component<PaginatorProps> {
11 nextClick = (e: any) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected