monacopilot / app /layout.tsx
matthoffner's picture
Update app/layout.tsx
019db90
raw
history blame
264 Bytes
export const metadata = {
title: 'monacopilot',
description: 'monaco-editor and copilot',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}