Initial commit.

This commit is contained in:
2019-04-08 19:49:50 +02:00
commit 35f1656c24
2 changed files with 54 additions and 0 deletions

5
dummy-entity-row.js Normal file
View File

@@ -0,0 +1,5 @@
let HuiGenericEntityRow = customElements.get('hui-generic-entity-row')
class DummyEntityRow extends HuiGenericEntityRow {
setConfig(config) {this.config = config;}
}
customElements.define('dummy-entity-row', DummyEntityRow);