fix(core): update

This commit is contained in:
2021-02-13 21:52:36 +00:00
parent 6eced2321f
commit fef0705acc
8 changed files with 144 additions and 27 deletions

View File

@@ -2,6 +2,12 @@ import { customElement, html, DeesElement, property, TemplateResult } from '@des
import * as domtools from '@designestate/dees-domtools';
declare global {
interface HTMLElementTagNameMap {
'dees-button': DeesButton;
}
}
@customElement('dees-button')
export class DeesButton extends DeesElement {
public static demo = () => html`<dees-button></dees-button>`