blob: 9644f269a6df33a216a7318d1424e233c19c1eff [file] [log] [blame]
// 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 {TracesAppElement} from './app.js';
export function getHtml(this: TracesAppElement) {
// clang-format off
return html`
<cr-tabs .tabNames="${this.tabNames_}" .selected="${this.selected_}"
@selected-changed="${this.onSelectedChanged_}">
</cr-tabs>
<cr-page-selector .selected="${this.selected_}">
<trace-report-list></trace-report-list>
<tracing-scenarios-config></tracing-scenarios-config>
<trace-recorder></trace-recorder>
</cr-page-selector>`;
// clang-format on
}