UNPKG

apprun

Version:

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

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