import React from 'react'; import { Pagination } from 'UI'; import { numberWithCommas } from 'App/utils'; function FullPagination({ page, limit, total, listLen, onPageChange, entity, }: { page: number; limit: number; total: number; listLen: number; onPageChange: (page: number) => void; entity?: string; }) { return (