123456789101112131415161718192021222324252627282930 |
- import Feature from 'sentry/components/acl/feature';
- import Alert from 'sentry/components/alert';
- import {t} from 'sentry/locale';
- import {PageContent} from 'sentry/styles/organization';
- import {Organization} from 'sentry/types';
- import withOrganization from 'sentry/utils/withOrganization';
- type Props = {
- children: React.ReactChildren;
- organization: Organization;
- };
- function ProfilingContainer({organization, children}: Props) {
- return (
- <Feature
- hookName="feature-disabled:profiling-page"
- features={['profiling']}
- organization={organization}
- renderDisabled={() => (
- <PageContent>
- <Alert type="warning">{t("You don't have access to this feature")}</Alert>
- </PageContent>
- )}
- >
- {children}
- </Feature>
- );
- }
- export default withOrganization(ProfilingContainer);
|