// 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 ( ); }