|  | // Copyright 2024 The Chromium Authors | 
|  | // Use of this source code is governed by a BSD-style license that can be | 
|  | // found in the LICENSE file. | 
|  |  | 
|  | import {html} from '//resources/lit/v3_0/lit.rollup.js'; | 
|  |  | 
|  | import type {SystemInfoAppElement} from './system_info_app.js'; | 
|  |  | 
|  | export function getHtml(this: SystemInfoAppElement) { | 
|  | return html`<!--_html_template_start_--> | 
|  | <div id="header"> | 
|  | <h1 id="title">$i18n{sysinfoPageTitle}</h1> | 
|  | </div> | 
|  | <key-value-pair-viewer ?loading="${this.loading_}" .entries="${this.entries_}"> | 
|  | </key-value-pair-viewer> | 
|  | <!--_html_template_end_-->`; | 
|  | } |