JSFiddle - React, Tailwind, and code Playground
by shapeshifta
JavaScript
// typing "hello world"
const input = Rx.Observable.fromEvent(document.querySelector('input'), 'input');
input
.map(event => event.target.value)
.subscribe(value => console.log(value));