diff --git a/src/WebComponent.js b/src/WebComponent.js index 35fd7c9..c80e9a1 100644 --- a/src/WebComponent.js +++ b/src/WebComponent.js @@ -23,10 +23,6 @@ * ``` */ export class WebComponent extends HTMLElement { - constructor() { - super(); - } - /** * @type Array */ @@ -68,14 +64,12 @@ export class WebComponent extends HTMLElement { onChanges(changes) {} connectedCallback() { - super.connectedCallback(); this.onInit(); this.render(); this.afterViewInit(); } disconnectedCallback() { - super.disconnectedCallback(); this.onDestroy(); }