'use client'; import { getClient } from '@/lib/sanity/sanity.client'; import { LiveQueryProvider } from '@sanity/preview-kit'; import { useMemo } from 'react'; export default function PreviewProvider({ children, token }: { children: React.ReactNode; token: string; }) { const client = useMemo(() => getClient({ token }), [token]); return {children}; }