RR
RR copied to clipboard
RR - Reactive React. A super tiny but purely reactive implementation of Flux architecture.
some thing like below is OK: ```javascript createAction({ a: function () {} }) ``` but when use ES6 syntax will get some error: ```javascript createAction({ a() {} }) ```
- add package dependency - remove unused codes Some of your code may already obsoleted, just deleted that.
Hey, nice library! I think it would be awesome if RR provided some higher-order components to separate pure components from stateful components (ones with subscribe). ### RRSubscribe ``` jsx ```...