Skip to content

Instantly share code, notes, and snippets.

@dgrammatiko
Created April 9, 2020 20:20
Show Gist options
  • Save dgrammatiko/642e69ae5a4a690f6b173d0fc96a65dc to your computer and use it in GitHub Desktop.
Save dgrammatiko/642e69ae5a4a690f6b173d0fc96a65dc to your computer and use it in GitHub Desktop.
/* eslint-disable require-jsdoc */
export class BaseElement extends LitElement {
constructor() {
super();
}
createRenderRoot() {
// Disable shadow DOM.
// Instead templates will be rendered in the light DOM.
return this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment