postiz/apps/frontend/src/app/(modal)/layout.tsx

11 lines
256 B
TypeScript

import { ReactNode } from 'react';
import { AppLayout } from '@gitroom/frontend/components/launches/layout.standalone';
export default async function AppLayoutIn({
children,
}: {
children: ReactNode;
}) {
return <AppLayout>{children}</AppLayout>;
}