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

12 lines
314 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
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
}