21 lines
447 B
TypeScript
21 lines
447 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { Provider } from "react-redux";
|
|
import { PersistGate } from "redux-persist/integration/react";
|
|
import { store, persistor } from "./redux/store";
|
|
|
|
export default function ReduxProvider({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<Provider store={store}>
|
|
<PersistGate loading={null} persistor={persistor}>
|
|
{children}
|
|
</PersistGate>
|
|
</Provider>
|
|
);
|
|
}
|