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 {children}; }