import { html, PolymerElement } from "@polymer/polymer/polymer-element.js"; /** * `thoughts-wc-test` * just as a pre test of polymer developing tools. * * @customElement * @polymer * @demo demo/index.html */ class ThoughtsWcTest extends PolymerElement { static get template() { return html`

Hello [[prop1]]!

`; } static get properties() { return { prop1: { type: String, value: "thoughts-wc-test" } }; } } window.customElements.define("thoughts-wc-test", ThoughtsWcTest);