mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 05:55:02 +00:00
8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
'use client';
|
|
|
|
import DashboardLayout from '../dashboard/layout';
|
|
|
|
export default function PackageBookingsLayout({ children }: { children: React.ReactNode }) {
|
|
return <DashboardLayout>{children}</DashboardLayout>;
|
|
}
|