| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <html> | |
| <body>{children}</body> | |
| </html> | |
| ); | |
| } | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode; | |
| }) { | |
| return ( | |
| <html> | |
| <body>{children}</body> | |
| </html> | |
| ); | |
| } | |