-
Notifications
You must be signed in to change notification settings - Fork 1
Redux
Ayushi Sood edited this page Jun 24, 2020
·
5 revisions
Reducers are just pure functions that take the previous state and an action, and return the next state.
Actions are payloads of information that send data from your application to your store. They are the only source of information for the store. You send them to the store using store.dispatch().
The connect() function connects a React component to a Redux store. Parameters: mapStateToProps, MapDispatchToProps
Context API (haven't used yet)