Show me how you could easily use rxjs observables in it and ill be sold.
I played with SolidJS for a while because it was super easy to integrate observables in the components just by doing `const active = from(accounts.active$)`
And for react I've gotten it down to as simple as `const active = use$(accounts.active$)` or `const events = use$(() => pool.subscription(relay, ...), [relay])