Created
July 15, 2023 07:35
-
-
Save Danny-Engelman/f9d6de27ed5cd1bf23bc8d61e940406f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
customElements.define("", class extends HTMLElement { | |
constructor() { | |
super() | |
.attachShadow({ mode: "open" }) | |
.innerHTML = `<style></style>`; | |
} | |
connectedCallback() { | |
this.innerHTML = ``; | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment