Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@daKmoR

daKmoR/block2.js Secret

Created February 12, 2020 16:44
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 daKmoR/bac2011925d43d409cf8456e4c42e93d to your computer and use it in GitHub Desktop.
Save daKmoR/bac2011925d43d409cf8456e4c42e93d to your computer and use it in GitHub Desktop.
import { css } from 'lit-element';
import { LionTabs } from '@lion/tabs';
export class LeaTabs extends LionTabs {
static get styles() {
return [
super.styles,
css`
/* my stylings */
`
];
}
connectedCallback() {
super.connectedCallback();
this._setupFeature();
}
_setupFeature() {
// being awesome
}
}
customElements.define('lea-tabs', LeaTabs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment