import Feature from 'sentry/components/acl/feature'; import FeatureDisabled from 'sentry/components/acl/featureDisabled'; import Panel from 'sentry/components/panels/panel'; import PanelBody from 'sentry/components/panels/panelBody'; import {t} from 'sentry/locale'; import useOrganization from 'sentry/utils/useOrganization'; import RelayWrapper from './relayWrapper'; function OrganizationRelay(props: Omit) { const organization = useOrganization(); return ( ( )} > ); } export default OrganizationRelay;