I need to use pagination in my datagrid project with React.js.
I use Fixed Data Table and I need to know what is the best way to do pagination with ES5.(Especially ES5)
Here is Fixed Data table Link:
https://facebook.github.io/fixed-data-table/
Can you show any pagination example in React.js(with ES5) or how can I do it ?
You will need to create a react component that handles the state of the pagination, and then pass one page at a time to a child component that renders the table.