import './styles.css' export default function Layout({ children }) { return ( <html> <body>{children}</body> </html> ) }