Зміст курсу
Redux Toolkit & React
Redux Toolkit & React
Creating a React Redux Toolkit Project
If you're starting a new project with Create React App and want to set up Redux Toolkit, you can use the --template redux
flag during project creation:
This will create a new React application with Redux Toolkit already configured.
We have the same list of installed libraries in dependencies
in package.json
, but the whole app already has predefined store, actions, and reducer.
We won't inspect all predefined tools here. We'll create our own in the future for more understanding and customization.
Remember that we have two options to introduce the React Redux library into our React app.
Дякуємо за ваш відгук!