class DataTable extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `
Phone Customer Name Facebook Date Report 1 Report 2 Report 3 Actions
`; } } customElements.define('data-table', DataTable);