link-stack/apps/leafcutter/app/(main)/layout.tsx
Darren Clarke b09cc82544 WIP 5
2024-03-20 17:51:21 +01:00

11 lines
314 B
TypeScript

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