'use client'; import { ReactNode } from 'react'; import { Provider } from 'react-redux'; import { store } from '../redux/store'; export function Providers({ children }: { children: ReactNode }) { return {children}; }