'use client' import { SWRConfig } from 'swr' import type { ReactNode } from 'react' type SwrInitorProps = { children: ReactNode } const SwrInitor = ({ children, }: SwrInitorProps) => { return ( {children} ) } export default SwrInitor