link-stack/apps/bridge-frontend/app/(main)/layout.tsx

10 lines
218 B
TypeScript
Raw Permalink Normal View History

2024-04-23 13:36:51 +02:00
import { InternalLayout } from "@/app/_components/InternalLayout";
export default function Layout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <InternalLayout>{children}</InternalLayout>;
}