DEV Community

Discussion on: Don't over useState

Collapse
 
tkdodo profile image
Dominik D

reselect works well if you need to select things from „outside“ of react, like a redux store. If you are working with hooks based libraries, I prefer writing custom hooks and doing useMemo, which is pretty much the same.