Skip to content

Instantly share code, notes, and snippets.

@dalaidunc
Created October 31, 2018 18:29
Show Gist options
  • Save dalaidunc/0ed61b84a49fc759715994b603bedaef to your computer and use it in GitHub Desktop.
Save dalaidunc/0ed61b84a49fc759715994b603bedaef to your computer and use it in GitHub Desktop.
// Create a class extending from HTMLElement to represent our new web component
class SocialStats extends HTMLElement {
constructor() {
// inherit everything from HTMLElement
super();
}
}
// define the element so it can be used in our HTML page
// The name of the element has to have a hyphen in the middle, but could be named pretty much anything
customElements.define('social-stats', SocialStats);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment