## PaginationControls
PaginationControls components are used to paginate through item lists
**Params**
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| total | number
| | total number of items |
| [startPage] | number
| 1
| initial page number to select |
| [size] | number
| 15
| number of items to display per page |
| onChange | function
| | callback fired on page change |
**Example**
```js
```
**See**
- [Uses of PaginationControls](https://github.com/hashicorp/vault/search?l=Handlebars&q=PaginationControls+OR+pagination-controls)
- [PaginationControls Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/pagination-controls.js)
---