import DashboardLayout from '@/components/layout/dashboard-layout';

export default function LeaveLayout({ children }: { children: React.ReactNode }) {
  return <DashboardLayout>{children}</DashboardLayout>;
}
