JSFiddle - React, Tailwind, and code Playground

by Richard Hunter

HTML

<my-foo>khkhkhkhkhk</my-foo>

JavaScript

class Foo extends HTMLElement {
  constructor() {
    super();

    this.addEventListener('click', () => {
      alert('hello');
    });

  }
}
customElements.define('my-foo', Foo);