Skip to content

Instantly share code, notes, and snippets.

@BerndWessels
Created October 7, 2020 18:16
Show Gist options
  • Save BerndWessels/a4211c6ba3dae36f6e487ba8a30eb4ac to your computer and use it in GitHub Desktop.
Save BerndWessels/a4211c6ba3dae36f6e487ba8a30eb4ac to your computer and use it in GitHub Desktop.
/* eslint-env browser */
class BusinessSolutionEmployeeSearchForm extends HTMLElement {
connectedCallback() {
this.render();
}
set api(val) {
this._api = val;
this.render();
}
render() {
this.innerHTML = "...";
}
}
customElements.define("business-solution-employee-search-form", BusinessSolutionEmployeeSearchForm);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment