export default function Root({ children }) { return ( <html> <body> <main>{children}</main> </body> </html> ) }