Skip to content

Instantly share code, notes, and snippets.

@rbiggs
Last active February 3, 2019 18:37
Show Gist options
  • Select an option

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

Select an option

Save rbiggs/01ddbaf4c09ec0feca2330a4b5f9839b to your computer and use it in GitHub Desktop.
Adding a subscription
subscriptions(state, send) {
return () => {
document.addEventListener('keypress', function (e) {
if (e.keyCode === 13) {
send({ type: 'addItem' })
}
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment