What could be causing my second React JSX function to fail to return <li> elements, despite properly filtered data?
Advertisements I am creating a simple search bar element in React JSX. I’m trying to render a list of elements that include whatever is in a search query. I basically take an array of all the elements and then I use .filter() function to find everything that includes the query. After that I use .map()… Read More What could be causing my second React JSX function to fail to return <li> elements, despite properly filtered data?