Some common keywords associated with React Redux are:
Store: A global state object that holds all the data for the application.
Actions: A plain JavaScript object that describes what you want to do.
Action creators: A function that creates an action.
Reducer: A function that updates the state of the application in response to an action.
Dispatch: A method that dispatches an action to the store.
Provider: A component that makes the store available to the rest of the application.
Connect: A higher-order component that connects a component to the store.
mapStateToProps: A function that maps the state of the store to the props of a component.
mapDispatchToProps: A function that maps dispatch actions to the props of a component.
Middleware: A function that enhances the behavior of the store and can be used for logging, debugging, or handling asynchronous actions.
Comments
Post a Comment