#
Getting Started with React ReduxReact Redux is the official React UI bindings layer for Redux. It lets your React components read data from a Redux store, and dispatch actions to the store to update state.
#
InstallationReact Redux 7.1+ requires React 16.8.3 or later, in order to make use of React Hooks.
#
Using Create React AppThe recommended way to start new apps with React Redux is by using the official Redux+JS template for Create React App, which takes advantage of Redux Toolkit.
#
An Existing React AppTo use React Redux with your React app, install it as a dependency:
You'll also need to install Redux and set up a Redux store in your app.
If you are using TypeScript, the React Redux types are maintained separately in DefinitelyTyped. You'll need to install those as well:
Provider
#
React Redux includes a <Provider />
component, which makes the Redux store available to the rest of your app:
#
HooksReact Redux provides a pair of custom React hooks that allow your React components to interact with the Redux store.
useSelector
reads a value from the store state and subscribes to updates, while useDispatch
returns the store's dispatch
method to let you dispatch actions.
#
Help and DiscussionThe #redux channel of the Reactiflux Discord community is our official resource for all questions related to learning and using Redux. Reactiflux is a great place to hang out, ask questions, and learn - come join us!
You can also ask questions on Stack Overflow using the #redux tag.