export default function RootLayout({ children }) { return ( <html> <head /> <body>{children}</body> </html> ) }