mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-23 09:02:00 +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>;
|
||
|
}
|