import { html, css, LitElement } from "lit"; import { customElement } from "lit/decorators.js"; @customElement("app-module") export class AppModule extends LitElement { static styles = css` header { height: 40px; background-color: navy; color: white; display: flex; flex-direction: row; align-items: center; padding-left: 10px; } `; render() { return html`
App Base
`; } }