class CustomNode extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `
Node
Drag handles to connect nodes
`; } } customElements.define('custom-node', CustomNode);