with RxJS
How powerful a reactive style can be
Some insight into how Redux works internally
Thing happens
⬇️
Triggers something else
^^^^^^^^^^^^^^^^^^^^^^^
.next(10)
10
.next(10)
10
10
Internal state
Get state -> store.getState()
Dispatch an action -> store.dispatch(action)
Subscribe to changes -> store.subscribe(func)
actions
reducer
renderer
.scan(
)
.subscribe(
)