16 lines
221 B
TypeScript
16 lines
221 B
TypeScript
|
|
export const metadata = {
|
|
title: 'Next.tsx',
|
|
description: 'Generated by Next.js'
|
|
}
|
|
|
|
export default function RootLayout({ children }) {
|
|
return(
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|
|
|
|
|