github.com/GoogleCloudPlatform/testgrid@v0.0.174/web/src/testgrid-app.ts (about)

     1  import { LitElement, html } from "lit";
     2  import { customElement } from "lit/decorators.js";
     3  import './testgrid-router'
     4  
     5  /**
     6   * Class definition for the `testgrid-app` element.
     7   * Application root element.
     8   */
     9  @customElement('testgrid-app')
    10  export class TestgridApp extends LitElement{
    11    /**
    12     * Lit-element lifecycle method.
    13     * Invoked on each update to perform rendering tasks.
    14     */
    15    render(){
    16      return html`<testgrid-router></testgrid-router>`;
    17    }
    18  }