I didn't see the ability to control the appearance of the pager. I'm more interested in a Bootstrap-style pager. Eg.

Is that something currently do-able with react-table?
You can customize the Pagination using Component Overrides, here's a quick example:
<ReactTable
// ...
PaginationComponent={Pagination}
/>
class Pagination extends React.Component {
render = () => (
<div>
You are on page {this.props.page + 1} of {this.props.pages}.
</div>
);
}
@alexkindel Awesome. Thanks! I'm using Typescript. What is the type of props the Pagination Component uses?
I am passing the customPagination in the same manner as above; but i am facing a warning message of Failed prop type: Invalid prop PaginationComponent supplied to ReactTable.
Any idea what can be the cause
Most helpful comment
You can customize the Pagination using Component Overrides, here's a quick example: