class QuickActions extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Add Production

Record new production batch

Record Sale

Create new invoice

Add Expense

Track factory costs

Add Customer

Create new customer profile

`; } } customElements.define('quick-actions', QuickActions);