mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-02 03:15:05 -05:00
3ce07edf43
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
import { NoMobileOverlay } from "@/modules/ui/components/no-mobile-overlay";
|
|
|
|
const AppLayout = async ({ children }) => {
|
|
return (
|
|
<>
|
|
<NoMobileOverlay />
|
|
{children}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AppLayout;
|