Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 1x | // Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
// Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license
export const data = [
{
title: 'Worldwide Corporate Headquarters',
address: 'The Landmark @ One Market, San Francisco, CA'
},
{
title: 'salesforce.com inc Atlanta',
address: '950 East Paces Ferry Road NE, Atlanta, GA'
},
{
title: 'salesforce.com inc Bellevue',
address: '929 108th Ave NE, Bellevue, WA'
},
{
title: 'salesforce.com inc Boston',
address: '500 Boylston Street 19th Floor, Boston, MA'
},
{
title: 'salesforce.com inc Chicago',
address: '111 West Illinois Street, Chicago, IL'
},
{
title: 'salesforce.com inc Herndon',
address: '2550 Wasser Terrace, Herndon, VA'
},
{
title: 'salesforce.com inc Hillsboro',
address: '2035 NE Cornelius Pass Road, Hillsboro, OR'
},
{
title: 'salesforce.com inc Indy',
address: '111 Monument Circle, Indianapolis, IN'
},
{
title: 'salesforce.com inc Irvine',
address: '300 Spectrum Center Drive, Irvine, CA'
}
];
|