Redux Toolkit: Example usage
15 June 2022 (Updated 12 March 2023)
1. Install packages
Install Redux Toolkit and React Redux:
2. Create store
The Redux DevTools extension will be configured for you.
3. Provide the store to your React app
4. Create a Redux state slice
A slice represents a portion of your app that has some state. You create a slice using createSlice
and pass it a name, initial state, and named reducer functions. Your reducer functions can “mutate” the state using Immer.
Redux Toolkit can generate action creators for you based on the reducers you define. Be sure to export the generated action creators and reducer.
5. Add slice reducer to the store
6. Use Redux state and actions in your React components
Now, you can use useSelector
to read data from the Redux store, and use useDispatch
to dispatch actions to update the store:
Tagged:
Redux
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment