mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-29 19:58:11 +00:00
6 lines
195 B
TypeScript
6 lines
195 B
TypeScript
import DashboardLayout from '../dashboard/layout';
|
|
|
|
export default function ReportsLayout({ children }: { children: React.ReactNode }) {
|
|
return <DashboardLayout>{children}</DashboardLayout>;
|
|
}
|