import {html, LitElement} from "lit"; import {customElement, property} from "lit/decorators.js"; import Subscriber from "@supersoniks/concorde/core/mixins/Subscriber"; const tagName = "sonic-example"; // For Astro.build @customElement(tagName) export class SonicComponent extends Subscriber(LitElement) { @property() text = "Example"; render() { return html`
${this.text}
`; } }