910e62b5创建于 1月15日历史提交
// 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
}