view src/main.ts @ 1:f92cec01b59e

merge with template project
author drewp@bigasterisk.com
date Fri, 01 Sep 2023 23:57:45 -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
    `;
  }
}