JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<one-dialog></one-dialog>

JavaScript

class OneDialog extends HTMLElement {
  connectedCallback() {
    this.innerHTML = `<h1>Hello, World!</h1>`;
  }
}

customElements.define('one-dialog', OneDialog);