"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}; }