Search Filter

PHOTO EMBED

Tue Sep 28 2021 06:47:59 GMT+0000 (Coordinated Universal Time)

Saved by @harshp #react.js #javascript

  handleSearch = searchText => {
    const filteredEvents = eventsData.filter(({ title }) => {
      title = title.toLowerCase();
      return title.includes(searchText);
    });

    this.setState({
      eventsData: filteredEvents
    });
  };
content_copyCOPY

https://codesandbox.io/s/z3ln7y0p04?file=/src/EventsSection/EventsSection.js:1256-1503