We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
==Action==:
==Reducer==:
requires previous state and action
function that takes in previous State and applies Action, returning new State
==Store==:
==Provider==:
==Dispatch==:
==Payload==:
==Connect==:
==Redux== is a predictable state container for JavaScript apps.
Redux stores all the information in something called store. Any component that needs the information, connects to the store using connect.
store
State comes as props to the component.
Only Reducer can create/manipulate State
Reducer
Action