Skip to content

Instantly share code, notes, and snippets.

@rbiggs
Created February 3, 2019 17:49
Show Gist options
  • Select an option

  • Save rbiggs/d9a1e09a4e34674882ec429154591745 to your computer and use it in GitHub Desktop.

Select an option

Save rbiggs/d9a1e09a4e34674882ec429154591745 to your computer and use it in GitHub Desktop.
Using an event to send a message to delete an item from the list component
<li key={item.key}>
<span>{item.value}</span>
<button class="delete-item" onclick={() => send({type: 'deleteItem', value: item.key})}>X</button>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment