link-stack/apps/leafcutter/app/(main)/layout.tsx
2024-11-25 09:31:25 +01:00

13 lines
355 B
TypeScript

import { ReactNode } from "react";
import "app/_styles/global.css";
import { InternalLayout } from "../_components/InternalLayout";
export const dynamic = "force-dynamic";
type LayoutProps = {
children: ReactNode;
};
export default function Layout({ children }: LayoutProps) {
return <InternalLayout embedded={false}>{children}</InternalLayout>;
}