startit/react_test/tutorial/app/layout.js

13 lines
219 B
JavaScript
Raw Normal View History

2024-09-13 13:06:19 +02:00
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}