diff --git a/payment-iq/app/layout.tsx b/payment-iq/app/layout.tsx
index 561d14e..06637ec 100644
--- a/payment-iq/app/layout.tsx
+++ b/payment-iq/app/layout.tsx
@@ -1,5 +1,6 @@
import ThemeRegistry from "@/config/ThemeRegistry";
import type { Metadata } from "next";
+import ReduxProvider from "./redux/ReduxProvider";
import "../styles/globals.scss";
export const metadata: Metadata = {
@@ -15,7 +16,9 @@ export default function RootLayout({
return (
+
{children}
+
);
diff --git a/payment-iq/app/redux/ReduxProvider.tsx b/payment-iq/app/redux/ReduxProvider.tsx
new file mode 100644
index 0000000..0a8cc4b
--- /dev/null
+++ b/payment-iq/app/redux/ReduxProvider.tsx
@@ -0,0 +1,8 @@
+"use client";
+
+import { Provider } from "react-redux";
+import { store } from "./store"; // Adjust the import path as necessary
+
+export default function ReduxProvider({ children }: { children: React.ReactNode }) {
+ return {children};
+}