23 lines
483 B
TypeScript
23 lines
483 B
TypeScript
import type { Metadata } from "next";
|
|
import { LicenseInfo } from "@mui/x-license";
|
|
|
|
LicenseInfo.setLicenseKey(
|
|
"c787ac6613c5f2aa0494c4285fe3e9f2Tz04OTY1NyxFPTE3NDYzNDE0ODkwMDAsUz1wcm8sTE09c3Vic2NyaXB0aW9uLEtWPTI=",
|
|
);
|
|
|
|
export const metadata: Metadata = {
|
|
title: "CDR Bridge",
|
|
description: "",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|