Setup redux JS
installation
npm install react-redux
in Index file you should import "Provider" and wrapp the app component, then we pass the store as props:
import React from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App f...
moemensaadeh.hashnode.dev2 min read