layout.tsx 295 B

123456789101112131415161718
  1. import './globals.css'
  2. export const metadata = {
  3. title: 'Create Next App',
  4. description: 'Generated by create next app',
  5. }
  6. export default function RootLayout({
  7. children,
  8. }: {
  9. children: React.ReactNode
  10. }) {
  11. return (
  12. <html lang="en">
  13. <body>{children}</body>
  14. </html>
  15. )
  16. }