/* eslint-disable no-alert */
import {Fragment} from 'react';
import {Button, LinkButton} from 'sentry/components/button';
import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
import {ActionsProvider} from 'sentry/components/workflowEngine/layout/actions';
import {BreadcrumbsProvider} from 'sentry/components/workflowEngine/layout/breadcrumbs';
import DetailLayout from 'sentry/components/workflowEngine/layout/detail';
import {useWorkflowEngineFeatureGate} from 'sentry/components/workflowEngine/useWorkflowEngineFeatureGate';
import {IconEdit} from 'sentry/icons';
import {t} from 'sentry/locale';
export default function DetectorDetail() {
useWorkflowEngineFeatureGate({redirect: true});
return (
}>
main
sidebar
);
}
function Actions() {
const disable = () => {
window.alert('disable');
};
return (
}>
{t('Edit')}
);
}