blob: 95ff2c82e03c416bca325c2630ddee82b5ed0bf1 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import '../ui/elements.dart';
class CpuBottomUp extends CoreElement {
CpuBottomUp() : super('div', classes: 'ui-details-section') {
flex();
layoutVertical();
add(div(text: 'Bottom up view coming soon', c: 'message'));
}
}