mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 09:58:12 +00:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
'use client';
|
|
|
|
import DashboardLayout from '../dashboard/layout';
|
|
|
|
export default function PromosLayout({ children }: { children: React.ReactNode }) {
|
|
return <DashboardLayout>{children}</DashboardLayout>;
|
|
}
|