noAccess.tsx 318 B

1234567891011
  1. import {Alert} from 'sentry/components/alert';
  2. import * as Layout from 'sentry/components/layouts/thirds';
  3. import {t} from 'sentry/locale';
  4. export function NoAccess() {
  5. return (
  6. <Layout.Page withPadding>
  7. <Alert type="warning">{t("You don't have access to this feature")}</Alert>
  8. </Layout.Page>
  9. );
  10. }