mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 22:41:59 +00:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import { ApplicationLayout } from "@/components/auth/application-layout";
|
|
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return <ApplicationLayout>{children}</ApplicationLayout>;
|
|
}
|