Monday, April 17, 2017

New concepts in Redux

Reducers are functions that take the current state in an action and returns the new state

Containers are react components that are user specific.Container component contains the necessary logic for marshaling data and actions which they pass to dumb components through props. These clear separation helps to keep it simple

Immutability Redux store are immutable

No comments:

Post a Comment