import {Button} from 'sentry/components/button'; import ButtonBar from 'sentry/components/buttonBar'; import CreateAlertButton from 'sentry/components/createAlertButton'; import {t} from 'sentry/locale'; import {Organization} from 'sentry/types'; const DOCS_URL = 'https://docs.sentry.io/product/alerts-notifications/metric-alerts/'; type Props = { organization: Organization; projectSlug: string; }; function MissingAlertsButtons({organization, projectSlug}: Props) { return ( {t('Create Alert')} ); } export default MissingAlertsButtons;