]> piware.de Git - webcomponents.git/blob - npm/hello-world.js
b3e3b9ad7c062f394981af49d16ee2d358b099cb
[webcomponents.git] / npm / hello-world.js
1 import { LitElement, html, css } from './node_modules/lit-element/lit-element.js';
2
3 class HelloWorld extends LitElement {
4   render() {
5     return html`<p>Hello world! Came here from ${document.referrer || 'unset-referrer' }</p>`;
6   }
7 }
8
9 customElements.define('hello-world', HelloWorld);