import {LitElement, html} from 'lit'; export class Player extends LitElement { static properties = { version: {}, }; constructor() { super(); this.version = 'STARTING'; } render() { return html`

Welcome to the Lit tutorial!

This is the ${this.version} code.

`; } } customElements.define('player-controls', Player);