export default function Layout({ children }) { return ( <html> <body> <h1>Group Layout</h1> {children} </body> </html> ) }