Skip to content

Instantly share code, notes, and snippets.

@Mohammad-Faisal
Last active April 22, 2022 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Mohammad-Faisal/331aee513c27d7a2e951f35a9f81446a to your computer and use it in GitHub Desktop.
Save Mohammad-Faisal/331aee513c27d7a2e951f35a9f81446a to your computer and use it in GitHub Desktop.
return (
<ul>
{posts.map((post) => (
<li onClick={event => {
console.log(event.target, 'clicked!'); // <- THIS IS BAD
}} key={post.id}>{post.title}
</li>
))}
</ul>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment