UNPKG

@spratch/whtable

Version:

A typescript react accessible table component for WealthHealth

8 lines (7 loc) 254 B
type Props = { currentPage: number; totalPages: number; onPageChange: (page: number) => void; }; export default function Pagination({ currentPage, totalPages, onPageChange }: Props): import("react/jsx-runtime").JSX.Element | null; export {};