/react_movies-list-filter

Primary LanguageTypeScriptGNU General Public License v3.0GPL-3.0

Movies list - Filter

Task

You are given movies list and a search field. Implement filtering using a useState hook.

  1. On every change save the input value into the query
  2. Create a visibleMovies variable in with the filtered movies
  3. Check if movie.title or movie.description contains query
  4. Search should be case insensitive (Inception can be found by entering inc or Inc or even iNC)