import {ComponentProps} from 'react'; import Feature from 'sentry/components/acl/feature'; import {Alert} from 'sentry/components/alert'; import * as Layout from 'sentry/components/layouts/thirds'; import {t} from 'sentry/locale'; import useOrganization from 'sentry/utils/useOrganization'; import GroupReplays from './groupReplays'; type Props = ComponentProps; function renderNoAccess() { return ( {t("You don't have access to this feature")} ); } function GroupReplaysContainer(props: Props) { const organization = useOrganization(); return ( ); } export default GroupReplaysContainer;