import type {RouteComponentProps} from 'react-router'; import Feature from 'sentry/components/acl/feature'; import FeatureDisabled from 'sentry/components/acl/featureDisabled'; import {t} from 'sentry/locale'; import type {Group, Organization} from 'sentry/types'; import withOrganization from 'sentry/utils/withOrganization'; import GroupEventAttachments from './groupEventAttachments'; type Props = RouteComponentProps<{groupId: string}, {}> & { group: Group; organization: Organization; }; function GroupEventAttachmentsContainer({organization, group}: Props) { return ( ( )} > ); } export default withOrganization(GroupEventAttachmentsContainer);