You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
847 B
TypeScript

// Copyright (C) 2021 Intel Corporation
//
// SPDX-License-Identifier: MIT
import React from 'react';
import Location from './location';
import consts from '../../consts';
interface Props {
selectedRegion: any;
onSelectRegion: any;
internalCommonProps: any;
}
export default function GCSLocation(props: Props): JSX.Element {
const {
selectedRegion,
onSelectRegion,
internalCommonProps,
} = props;
return (
<Location
selectedRegion={selectedRegion}
onSelectRegion={onSelectRegion}
internalCommonProps={internalCommonProps}
values={consts.DEFAULT_GOOGLE_CLOUD_STORAGE_LOCATIONS}
name='location'
label='Location'
href='https://cloud.google.com/storage/docs/locations#available-locations'
/>
);
}