export default function Root({ children }) { return ( <html> <head> <title>Hello World</title> </head> <body>{children}</body> </html> ) }