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