cm_bot_v2/web/app/layout.tsx

18 lines
246 B
TypeScript

import "./globals.css";
export const metadata = {
title: "CM Bot V2",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}