Pavel Ravits
Pavel Ravits
has this error  
seems like after adding node_modules into .gitignore, the error disappeared
It seems like on my desktop ubuntu it is fine. While on my other laptop ubuntu it does the above. Will check it farther
It is my two users lol
FYI this is the new kid in the block and the alternative for react-window: React hooks implementation https://github.com/tannerlinsley/react-virtual
I am thinking, if replacing each of these useEffect useState etc with crank equivalent, then such custom hooks could be used as is. Then the adaption could be faster
> What Brian might not say is: there is a danger in "can you make this work like in React", and the answer being "yes" too many times, and then...
I like explicit refresh. In React you do refresh sometimes implicitly by setState , and then you wander how the updates are batched and when they happen. And sometimes you...
Thanks, I think I like that auto() solution
``` const selector = useCallback(s=>({a: s.a, b: s.b}),[]) const obj = useSelector(selector) ```