logoalt Hacker News

user43928today at 10:42 AM1 replyview on HN

Redux is great and it solves exactly that problem.

You create a selector. You use the selector in a React component.

The component re-renders when the selector outputs a different value, with the usual reference equality caveat.

Does it get any simpler than that?

However, yes, I have seen most developers use Redux incompetently.

They would use actions like "setOrder" instead of "itemAdded", defeating the purpose of a state machine from the start.


Replies

satvikpendemtoday at 11:37 AM

They might have been using Redux before it did a major API change in the form of slices.

show 1 reply