UNPKG

apprun

Version:

JavaScript library that has Elm inspired architecture, event pub-sub and components

8 lines 271 B
import app from './apprun'; export default (_, children) => { const el = document.createElement('section'); el.attachShadow({ mode: 'open' }); app.render(el.shadowRoot, children); return app.h(app.Fragment, null, el); }; //# sourceMappingURL=shadow.js.map