const h = require('vhtml') const html = require('htm').bind(h) const Layout = ({children}) => { return html`
${children}
` } export default Layout