ccdp10003-project02/app/layout.tsx

22 lines
361 B
TypeScript
Raw Normal View History

import './globals.css';
export const metadata = {
title: 'The Myrtle Tree',
description: 'A pitch for a game about sound and reliving memories',
icons: {
icon: 'favicon.ico'
}
};
export default function RootLayout({
children
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}