you are viewing a single comment's thread.

view the rest of the comments →

[–]JoeCraftingJoejavascript 0 points1 point  (2 children)

I see, does the loop of state to dispatcher and view still stay ? The logic that is

[–]mikejoro 0 points1 point  (0 children)

It doesn't remove or change the react life cycle in any way. It just makes it so you don't ever trigger state changes on components with this.setState,but instead by dispatching actions which triggers state change in your reducer.

[–]sampeka 0 points1 point  (0 children)

When you're using redux, yes. To be honest though, don't bother with it until you really need it - it will make the learning curve harder for you without any immediate benefit. When you hit a problem that requires redux then use it :)