link-stack/apps/bridge-frontend/app/(main)/layout.tsx
2024-04-23 13:36:51 +02:00

9 lines
218 B
TypeScript

import { InternalLayout } from "@/app/_components/InternalLayout";
export default function Layout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <InternalLayout>{children}</InternalLayout>;
}