chrome-devtools-frontend
Version:
Chrome DevTools UI
54 lines (51 loc) • 1.26 kB
text/typescript
// Copyright 2020 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 * as Components from '../../ui/components/components.js';
export const officesAndProductsData: Components.TreeOutline.TreeOutlineData = {
tree: [
{
key: 'Offices',
children: () => Promise.resolve([
{
key: 'Europe',
children: () => Promise.resolve([
{
key: 'UK',
children: () => Promise.resolve([
{
key: 'LON',
children: () => Promise.resolve([{key: '6PS'}, {key: 'CSG'}, {key: 'BEL'}]),
},
]),
},
{
key: 'Germany',
children: () => Promise.resolve([
{key: 'MUC'},
{key: 'BER'},
]),
},
]),
},
]),
},
{
key: 'Products',
children: () => Promise.resolve([
{
key: 'Chrome',
},
{
key: 'YouTube',
},
{
key: 'Drive',
},
{
key: 'Calendar',
},
]),
},
],
};