6 step process.
Install Redux Toolkit and React-Redux Packages
Create a Redux Store
Include the Redux Store to App.js parent
Create a Redux State Slice
Add Slice Reducers to the Store
Implementing useSelector and useDispatch in React Components
npm i --save redux react-redux redux-thunk // You will need these redux packages
import React from 'react'
import ReactDOM from 'react-dom/client'
import { Provider } from 'react-redux'
import store from './store'
import App from './App'
// As of React 18
const root = ReactDOM.createRoot(document.getElementById('root'))
root.render(
<Provider store={store}>
<App />
</Provider>
)