Skip to content
Cristian Sima edited this page Jan 30, 2019 · 1 revision

Shows information about the current pagination

type InfoPropTypes = {
  shown: number;
  total: number;
  one: string;
  all: string;
};

Example

<Info
  all="companies"
  one="company"
  shown={paginator.items.size}
  total={paginator.total}
/>
Clone this wiki locally