|
@@ -8,6 +8,7 @@ import Alert from 'sentry/components/alert';
|
|
|
import ButtonBar from 'sentry/components/buttonBar';
|
|
|
import FeatureBadge from 'sentry/components/featureBadge';
|
|
|
import FeedbackWidgetButton from 'sentry/components/feedback/widget/feedbackWidgetButton';
|
|
|
+import HookOrDefault from 'sentry/components/hookOrDefault';
|
|
|
import * as Layout from 'sentry/components/layouts/thirds';
|
|
|
import LoadingIndicator from 'sentry/components/loadingIndicator';
|
|
|
import OnboardingPanel from 'sentry/components/onboardingPanel';
|
|
@@ -52,6 +53,10 @@ function DisabledMonitorCreationPanel() {
|
|
|
);
|
|
|
}
|
|
|
|
|
|
+const CronsListPageHeader = HookOrDefault({
|
|
|
+ hookName: 'component:crons-list-page-header',
|
|
|
+});
|
|
|
+
|
|
|
export default function Monitors() {
|
|
|
const organization = useOrganization();
|
|
|
const router = useRouter();
|
|
@@ -88,6 +93,7 @@ export default function Monitors() {
|
|
|
|
|
|
return (
|
|
|
<SentryDocumentTitle title={`Crons — ${organization.slug}`}>
|
|
|
+ <CronsListPageHeader organization={organization} />
|
|
|
<Layout.Page>
|
|
|
<Layout.Header>
|
|
|
<Layout.HeaderContent>
|