Mercurial > code > home > repos > pi_mqtt
diff src/main.ts @ 0:3989f073ed9e
start. hardcoded motion light in garage
author | drewp@bigasterisk.com |
---|---|
date | Thu, 24 Aug 2023 16:28:05 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main.ts Thu Aug 24 16:28:05 2023 -0700 @@ -0,0 +1,20 @@ +import { LitElement, TemplateResult, css, html } from "lit"; +import { customElement, queryAsync, state } from "lit/decorators.js"; + +@customElement("pm-page") +export class PmPage extends LitElement { + static styles = [ + css` + :host { + display: flex; + flex-direction: column; + height: 100vh; + } + `]; + + render() { + return html` + pm-page element + `; + } +} \ No newline at end of file