"use client"; import { ReactNode } from "react"; import { Provider } from "react-redux"; import { PersistGate } from "redux-persist/integration/react"; import { persistor, store } from "@/lib/store/store"; type Props = { children: ReactNode; }; export default function ReduxProvider({ children }: Props) { return ( {" "} {children} ); }