Mercurial > code > home > repos > pi_mqtt
annotate src/main.ts @ 7:f0d549ec5e59 default tip
deployment and hostname
author | drewp@bigasterisk.com |
---|---|
date | Mon, 23 Sep 2024 01:24:48 -0700 |
parents | 3989f073ed9e |
children |
rev | line source |
---|---|
0 | 1 import { LitElement, TemplateResult, css, html } from "lit"; |
2 import { customElement, queryAsync, state } from "lit/decorators.js"; | |
3 | |
4 @customElement("pm-page") | |
5 export class PmPage extends LitElement { | |
6 static styles = [ | |
7 css` | |
8 :host { | |
9 display: flex; | |
10 flex-direction: column; | |
11 height: 100vh; | |
12 } | |
13 `]; | |
14 | |
15 render() { | |
16 return html` | |
17 pm-page element | |
18 `; | |
19 } | |
20 } |