export default function Layout({ children }) { return ( <html> <head /> <body> <div>{children}</div> </body> </html> ) }