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

27 lines
675 B
TypeScript

import { ReactNode } from "react";
import { Metadata } from "next";
import "app/_styles/global.css";
// import getConfig from "next/config";
// import { LicenseInfo } from "@mui/x-data-grid-pro";
import { MultiProvider } from "./_components/MultiProvider";
export const metadata: Metadata = {
title: "Leafcutter",
};
type LayoutProps = {
children: ReactNode;
};
export default function Layout({ children }: LayoutProps) {
// const { publicRuntimeConfig } = getConfig();
// LicenseInfo.setLicenseKey(publicRuntimeConfig.muiLicenseKey);
return (
<html lang="en">
<body>
<MultiProvider>{children}</MultiProvider>
</body>
</html>
);
}