import ntvGrid from "../grid"; class NotiveAppElement extends HTMLElement { connectedCallback() { this.append( ...window.notive.doc.grids.map((_grid) => { return ntvGrid({ foo: "1" }); }), ); } } customElements.define("ntv-app", NotiveAppElement);