mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-24 03:21:20 -05:00
15 lines
336 B
TypeScript
15 lines
336 B
TypeScript
import { IntercomClientWrapper } from "@/app/intercom/IntercomClientWrapper";
|
|
import { NoMobileOverlay } from "@/modules/ui/components/no-mobile-overlay";
|
|
|
|
const AppLayout = async ({ children }) => {
|
|
return (
|
|
<>
|
|
<NoMobileOverlay />
|
|
<IntercomClientWrapper />
|
|
{children}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AppLayout;
|