Guest User

Untitled

a guest
Jun 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class HelloComponentClass extends HTMLElement {
  2.   constructor() {
  3.   super();
  4.   }
  5.  
  6.   static get observedAttributes() {
  7.   }
  8.  
  9.   connectedCallback() {
  10.   }
  11.  
  12.   disconnectedCallback() {
  13.   }
  14.  
  15.   attributeChangedCallback(attrName, oldVal, newVal) {
  16.   }
  17. }
Add Comment
Please, Sign In to add comment