Mitchell Magro ad85a18225 s
2025-06-18 18:24:37 +02:00

11 lines
328 B
TypeScript

'use client';
import React from 'react';
import SidebarLayout from '../components/sidebar/Sidebar';
const DashboardLayout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
return <SidebarLayout>{children}</SidebarLayout>; // Ensure that the sidebar wraps all dashboard pages
};
export default DashboardLayout;