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

14 lines
355 B
TypeScript
Raw Normal View History

2023-06-28 10:52:23 +00:00
import { ReactNode } from "react";
import "app/_styles/global.css";
2023-08-25 07:11:33 +00:00
import { InternalLayout } from "../_components/InternalLayout";
2023-06-28 10:52:23 +00:00
2024-11-25 09:31:25 +01:00
export const dynamic = "force-dynamic";
2023-06-28 10:52:23 +00:00
type LayoutProps = {
children: ReactNode;
};
export default function Layout({ children }: LayoutProps) {
2023-08-25 07:11:33 +00:00
return <InternalLayout embedded={false}>{children}</InternalLayout>;
2023-06-28 10:52:23 +00:00
}