github.com/resonatecoop/id@v1.1.0-43/frontend/src/layouts/default.js (about)

     1  const html = require('choo/html')
     2  
     3  module.exports = (view) => {
     4    return (state, emit) => {
     5      return html`
     6        <div id="app" class="flex flex-column pb6">
     7          <main class="flex flex-auto">
     8            ${view(state, emit)}
     9          </main>
    10        </div>
    11      `
    12    }
    13  }