diff --git a/static/app/components/sidebar/index.tsx b/static/app/components/sidebar/index.tsx index e2968c46e136e..e363d5f6e7f7a 100644 --- a/static/app/components/sidebar/index.tsx +++ b/static/app/components/sidebar/index.tsx @@ -351,6 +351,7 @@ function Sidebar({location, organization}: Props) { label={t('DDM')} to={`/organizations/${organization.slug}/ddm/`} id="ddm" + isAlpha /> ); diff --git a/static/app/views/ddm/ddm.tsx b/static/app/views/ddm/ddm.tsx index 657abc71037c4..f6db61668a7bb 100644 --- a/static/app/views/ddm/ddm.tsx +++ b/static/app/views/ddm/ddm.tsx @@ -1,3 +1,9 @@ +import ButtonBar from 'sentry/components/buttonBar'; +import FeatureBadge from 'sentry/components/featureBadge'; +import {FeatureFeedback} from 'sentry/components/featureFeedback'; +import * as Layout from 'sentry/components/layouts/thirds'; +import PageFiltersContainer from 'sentry/components/organizations/pageFilters/container'; +import {PageHeadingQuestionTooltip} from 'sentry/components/pageHeadingQuestionTooltip'; import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle'; import {t} from 'sentry/locale'; import useOrganization from 'sentry/utils/useOrganization'; @@ -7,7 +13,30 @@ function DDM() { return ( - {t('DDM')} + + + + + + {t('DDM')} + + + + + + + + + + + + . + + + ); }