I am able to retrieve a list of data and search for a title name from a list of todos
This is the prototype i have done => https://codesandbox.io/s/silly-firefly-7oe25
In the demo you can see the 2 working cases in App.js
<Tasks tasks={currentTasks} loading={loading} /> // it works with Pagination
<Tasks tasks={filteredData} loading={loading} /> // It filters por title, result not paginated
I need to combine the data filteredData paginated when i do the research in my inputType, the problem that i have now is that i can not paginate the data filtered, but the pagination is working with my initial list of data.