comingSoon.tsx 239 B

123456789101112
  1. import {Alert} from 'sentry/components/alert';
  2. import {t} from 'sentry/locale';
  3. function ComingSoon() {
  4. return (
  5. <Alert type="info" showIcon>
  6. {t('This feature is coming soon!')}
  7. </Alert>
  8. );
  9. }
  10. export default ComingSoon;