14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
import { DashboardLayout } from "@/components/dashboard-layout";
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<DashboardLayout>{children}</DashboardLayout>
|
|
</>
|
|
);
|
|
}
|