Skip to content

Instantly share code, notes, and snippets.

@WesleySmits
Created October 16, 2021 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WesleySmits/1f0ed4fd8a5334737fc0271e6088fab5 to your computer and use it in GitHub Desktop.
Save WesleySmits/1f0ed4fd8a5334737fc0271e6088fab5 to your computer and use it in GitHub Desktop.
Simple web calculator: Simple custom element
class Calculator extends HTMLElement {
constructor() {
super();
}
}
customElements.define('ws-calculator', Calculator);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment