Skip to content

Instantly share code, notes, and snippets.

@ericorruption
Last active January 22, 2018 13:14
Show Gist options
  • Save ericorruption/93091d84791cbbd92b50ad1332023a62 to your computer and use it in GitHub Desktop.
Save ericorruption/93091d84791cbbd92b50ad1332023a62 to your computer and use it in GitHub Desktop.
Observables > Events
import { Observable } from 'rx'
const { fromEvent } = Observable
fromEvent(document.querySelector('button'), 'click').subscribe(e => console.log(e));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment