mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
import { LitElement, html } from 'lit-element';
|
|
import { message } from './commonjs-module.js';
|
|
|
|
class DemoApp extends LitElement {
|
|
render() {
|
|
return html` ${message} `;
|
|
}
|
|
}
|
|
|
|
customElements.define('demo-app', DemoApp);
|