Filter Posts from state

PHOTO EMBED

Thu Feb 15 2024 22:04:22 GMT+0000 (Coordinated Universal Time)

Saved by @davidmchale #react #filter #query

  // Derived state. These are the posts that will actually be displayed
  const searchedPosts = searchQuery.length > 0 ? posts.filter((post) => `${post.title} ${post.body}`.toLowerCase().includes(searchQuery.toLowerCase())) : posts;
content_copyCOPY