Files
formbricks/apps/web/app/(auth)/layout.tsx
T
2026-03-11 10:14:37 +01:00

13 lines
257 B
TypeScript

import { NoMobileOverlay } from "@/modules/ui/components/no-mobile-overlay";
const AppLayout = async ({ children }: { children: React.ReactNode }) => {
return (
<>
<NoMobileOverlay />
{children}
</>
);
};
export default AppLayout;