react-typescript-test/app/layout.tsx

17 lines
260 B
TypeScript
Raw Permalink Normal View History

2024-09-03 19:21:04 +02:00
export const metadata = {
title: 'React test v1',
description: 'Generated by Us.js',
2024-09-03 19:21:04 +02:00
}
2024-09-03 19:08:37 +02:00
export default function RootLayout({
children,
2024-09-03 19:21:04 +02:00
}: {
children: React.ReactNode
}) {
2024-09-03 19:08:37 +02:00
return (
<html lang="en">
2024-09-03 19:21:04 +02:00
<body>{children}</body>
2024-09-03 19:08:37 +02:00
</html>
2024-09-03 19:21:04 +02:00
)
}