import React from 'react' export default async function Root({ children, }: { children: React.ReactNode }) { return ( <html> <body>{children}</body> </html> ) }