view 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 source

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
    `;
  }
}