I am new to react js. We used react-table to display the records in the tabular format.
The issue which I am facing is pagination is not working.
To enable the pagination in react-table, set the props according to the documentation i.e.
<ReactTable
manual
className="expandableTable -highlight"
columns={this.props.column}
data={this.state.data}
showPagination={true}
minRow={5}
defaultSortDesc={true}
ref={this.props.id}
defaultPageSize={5}
multiSort={false}
...
Any suggestion, what I am missing here?