import { html } from 'lit-html';
import { customElement, property } from '@lit-html-free/core';
@customElement('about-component')
export default class extends HTMLElement {
@property() cool = 5;
public click() {
this.cool++;
this.cool++;
this.cool++;
}
public render() {
return html`
about: ${this.cool}
`;
}
}