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