Pavel Ravits

Results 44 comments of Pavel Ravits

has this error ![image](https://user-images.githubusercontent.com/6741645/161257716-967f18da-6f5b-4e7c-b3c5-2e7a76bbdb90.png) ![image](https://user-images.githubusercontent.com/6741645/161257876-62a47a19-1fb7-4f92-b6d9-c49dde19b3d9.png)

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) ```