import * as AppStoreConnectContext from 'sentry/components/projects/appStoreConnectContext'; import {Organization, Project} from 'sentry/types'; import UpdateAlert from './updateAlert'; type Props = Pick, 'className' | 'Wrapper'> & { organization: Organization; project?: Project; }; function GlobalAppStoreConnectUpdateAlert({project, organization, ...rest}: Props) { return ( ); } export default GlobalAppStoreConnectUpdateAlert;