use iam module login page for backoffice

This commit is contained in:
mengstabketemaw
2026-06-03 14:17:06 +03:00
parent 4faf851a8f
commit d730be3e85
6 changed files with 29 additions and 160 deletions

View File

@@ -29,3 +29,13 @@ export function IamProviders({ children }: IamProvidersProps) {
</AuthProvider>
);
}
export function AuthProviders({ children }: { children: ReactNode }) {
return (
<AuthProvider>
<BrandingProvider>
{children}
</BrandingProvider>
</AuthProvider>
);
}