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