JSFiddle - React, Tailwind, and code Playground
HTML
<my-foo>khkhkhkhkhk</my-foo>
JavaScript
class Foo extends HTMLElement {
constructor() {
super();
this.addEventListener('click', () => {
alert('hello');
});
}
}
customElements.define('my-foo', Foo);