comingSoon.tsx 219 B

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