mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 17:02:01 +00:00
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m58s
15 lines
337 B
TypeScript
15 lines
337 B
TypeScript
import { ApplicationLayout } from "@/components/auth/application-layout";
|
|
import QueryProvider from "@/components/query-provider";
|
|
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return <ApplicationLayout>
|
|
<QueryProvider>
|
|
{children}
|
|
</QueryProvider>
|
|
</ApplicationLayout>;
|
|
}
|