In-Memory filter pagination + React

Small React app that calls an external API with 100k user records, stores all the records on memory and filter and paginate them to display to the user, controlling the app state with useReducer.

Tasks

  • Call API
  • List Users
  • Search by Name
  • Debounce search to improve performance
  • Paginate search results
  • Create user friendly interface
  • Host on the web
  • Search by age
  • Allow user to change number of records per page
  • Testing