import { html, LitElement } from 'lit' import { repeat } from 'lit-html/directives/repeat.js' import { customElement, property } from 'lit/decorators.js' @customElement('channel-configuration') export class ChannelConfigurationElement extends LitElement { @property() public list: string[] = ["foo", "bar", "baz"] @property() public newEl: string = 'change_me' createRenderRoot = () => { return this } render() { return html`