fix(core): update

This commit is contained in:
2022-03-16 15:00:10 +01:00
parent 9b30853a56
commit b8ced9a991
9 changed files with 25 additions and 41 deletions

View File

@ -11,12 +11,12 @@ tap.test('should create a static element', async () => {
.buttonClass {
background: ${deesElement.cssManager.bdTheme('blue', 'black')};
}
`
`,
];
// INSTANCE
render() {
return deesElement.html`<div class="buttonClass">My Button</div>`
return deesElement.html`<div class="buttonClass">My Button</div>`;
}
}
});