import { html, css } from '@lion/core'; import { MyCounter } from '../src/MyCounter.js'; export class MyExtension extends MyCounter { static get styles() { return [ ...super.styles, css` button { background: #c43f16; } `, ]; } _renderHeader() { return html`

I am MyExtension

`; } }