mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
import DashboardLayout from '../dashboard/layout';
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return <DashboardLayout>{children}</DashboardLayout>;
|
|
}
|