Haven't decided if I am going to submit code to it yet
👍 - Unlocked & Done 😊 - Locked & Done 🔒 - Locked & Not Done [] - Not yet Done
| import {div, input} from '@cycle/dom' | |
| import isolate from '@cycle/isolate' | |
| import xs from 'xstream' | |
| import {assoc} from 'ramda' | |
| function Form (sources) { | |
| const billingAddressChange$ = sources.DOM | |
| .select('.billing-address').events('input') | |
| .map(ev => ev.target.value) | |
| .startWith('') |