UNPKG

@atlaskit/pagination

Version:

Pagination allows you to divide large amounts of content into smaller chunks across multiple pages.

10 lines (9 loc) 246 B
import { type ReactElement } from 'react'; type EllipsisProp = { key: string; testId?: string; from: number; to: number; }; export default function renderEllipsis({ key, testId, from, to }: EllipsisProp): ReactElement; export {};