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

Drag & drop your files here

or

Supports: JPEG, PNG, PDF, DOCX up to 50MB

`; } } customElements.define('custom-upload-area', CustomUploadArea);