Events
To listen to DOM events you simply need to prepend event name with on
prefix:
handler
would receive native Event.
NOTE: DOM event list on MDN
Events and Subjects
The best way to use events in you Recks components — is to push them into a local RxJS Subject:
Last updated