blob: 3f65f8d69709ff541c337aed8b4a7637ad53ead4 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import '/strings.m.js';
import {CrLitElement} from 'chrome://resources/lit/v3_0/lit.rollup.js';
import {getCss} from './app.css.js';
import {getHtml} from './app.html.js';
export class HistoryAppElement extends CrLitElement {
static get is() {
return 'history-app';
}
static override get styles() {
return getCss();
}
override render() {
return getHtml.bind(this)();
}
}
declare global {
interface HTMLElementTagNameMap {
'history-app': HistoryAppElement;
}
}
customElements.define(HistoryAppElement.is, HistoryAppElement);