/* eslint-disable no-alert */
import {Fragment} from 'react';
import {Button} 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 EditLayout from 'sentry/components/workflowEngine/layout/edit';
import {useWorkflowEngineFeatureGate} from 'sentry/components/workflowEngine/useWorkflowEngineFeatureGate';
import {t} from 'sentry/locale';
export default function AutomationEdit() {
useWorkflowEngineFeatureGate({redirect: true});
return (
}>
Edit Automation
);
}
function Actions() {
const disable = () => {
window.alert('disable');
};
const del = () => {
window.alert('delete');
};
const save = () => {
window.alert('save');
};
return (
);
}