mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-30 13:25:40 +00:00
6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
import { DashboardLayout } from "@/components/dashboard-layout";
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return <DashboardLayout>{children}</DashboardLayout>;
|
|
}
|