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