feat: bootstrap auto virtual tryon admin frontend
This commit is contained in:
11
app/(dashboard)/layout.tsx
Normal file
11
app/(dashboard)/layout.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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>;
|
||||
}
|
||||
Reference in New Issue
Block a user