12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
import type { ReactNode } from "react";
|
|
|
|
import { DashboardShell } from "@/components/layout/dashboard-shell";
|
|
|
|
type DashboardLayoutProps = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
export default function DashboardLayout({ children }: DashboardLayoutProps) {
|
|
return <DashboardShell>{children}</DashboardShell>;
|
|
}
|