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