ccdp10003-project02/app/layout.tsx

22 lines
361 B
TypeScript
Raw Permalink 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: {
2023-05-13 14:49:49 +10:00
icon: 'favicon.svg'
}
};
export default function RootLayout({
children
}: {
children: React.ReactNode;
}) {
return (
2023-05-13 14:49:49 +10:00
<html lang='en'>
<body>{children}</body>
</html>
);
}