feat(validation): complete validation editor and master data modules
This commit is contained in:
parent
2b5c765e41
commit
f73a24df13
73 changed files with 10194 additions and 0 deletions
14
validation-suite/frontend/atlas/app/(app)/layout.tsx
Normal file
14
validation-suite/frontend/atlas/app/(app)/layout.tsx
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { AppShell } from "@/components/app-shell";
|
||||
import { AuthProvider } from "@/components/auth";
|
||||
import { QueryProvider } from "@/components/query-provider";
|
||||
|
||||
export default function WorkspaceLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<AuthProvider>
|
||||
<QueryProvider>
|
||||
<AppShell>{children}</AppShell>
|
||||
</QueryProvider>
|
||||
</AuthProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue