website/public/assets/js/elements/HTMLCodeDemoElement.mjs

13 lines
No EOL
296 B
JavaScript

import { CustomElement } from "./CustomElement.mjs";
export const TAG_NAME = "code-demo";
class HTMLCodeDemoElement extends CustomElement {
constructor() {
super();
this.importElementStylesheet(this.constructor.name);
}
}
globalThis.customElements.define(TAG_NAME, HTMLCodeDemoElement);