Vercel/src/state/SWRConfigClient.tsx
2024-04-24 19:48:48 -05:00

14 lines
195 B
TypeScript

'use client';
import { SWRConfig } from 'swr';
export default function SWRConfigClient({
children,
}: {
children: React.ReactNode
}) {
return <SWRConfig>
{children}
</SWRConfig>;
}