// src/app/dashboard/layout.tsx
import DashboardClientWrapper from '@/app/components/dashboard/DashboardClientWrapper';


export default async function DashboardLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  
  return <DashboardClientWrapper>{children}</DashboardClientWrapper>;
}