Installing Redux:
npm install @reduxjs/toolkit react-redux
Create a src/store folder. We will create a numeric counter in our state, Redux calls this a “slice” of the state. To create our slice, create src/store/counter.jsx . Each slice should live in a file similar to this one.
// src/