Skip to content

Instantly share code, notes, and snippets.

@ozcanzaferayan
Created May 19, 2020 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozcanzaferayan/445c05e78997a2ef1faa481179bbf83d to your computer and use it in GitHub Desktop.
Save ozcanzaferayan/445c05e78997a2ef1faa481179bbf83d to your computer and use it in GitHub Desktop.
{todoList.map((item, index) => (
<li key={item}>
{item} <button onClick={() => deleteItemAt(index)}>Delete</button>
</li>
))}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment