import * as React from 'react' export default function Layout({ children }) { return ( <html> <body>{children}</body> </html> ) }