mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-28 05:03:33 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 11m8s
15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
import { ApplicationLayout } from "@/components/auth/application-layout";
|
|
import QueryProvider from "@/providers/query-provider";
|
|
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<ApplicationLayout>
|
|
<QueryProvider>{children}</QueryProvider>
|
|
</ApplicationLayout>
|
|
);
|
|
}
|