yetAnotherCounter$.renderLive (
(counterValue)=>(<h1>{counterValue}</h1>)
<button onClick={()=>yetAnotherCounter$.do.update(3)}>
<button onClick={()=>yetAnotherCounter$.do.update(current=>++current)}>
<button onClick={()=>yetAnotherCounter$.do.updateAsap(
<button onClick={()=>yetAnotherCounter$.do.updateAsap(
Asaps.delayed(current=>++current, 1000)