link-stack/apps/leafcutter/app/(main)/layout.tsx
Darren Clarke fe6c9419dd WIP 2
2024-03-16 19:39:20 +01:00

13 lines
409 B
TypeScript

import { ReactNode } from "react";
import "app/_styles/global.css";
// import getConfig from "next/config";
// import { LicenseInfo } from "@mui/x-data-grid-pro";
import { InternalLayout } from "../_components/InternalLayout";
type LayoutProps = {
children: ReactNode;
};
export default function Layout({ children }: LayoutProps) {
return <InternalLayout embedded={false}>{children}</InternalLayout>;
}