comingSoon.tsx 270 B

1234567891011
  1. import Alert from 'app/components/alert';
  2. import {IconInfo} from 'app/icons';
  3. import {t} from 'app/locale';
  4. const ComingSoon = () => (
  5. <Alert type="info" icon={<IconInfo size="md" />}>
  6. {t('This feature is coming soon!')}
  7. </Alert>
  8. );
  9. export default ComingSoon;