/* 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 ListLayout from 'sentry/components/workflowEngine/layout/list';
import {useWorkflowEngineFeatureGate} from 'sentry/components/workflowEngine/useWorkflowEngineFeatureGate';
import {IconAdd} from 'sentry/icons';
import {t} from 'sentry/locale';
export default function AutomationsList() {
useWorkflowEngineFeatureGate({redirect: true});
return (
}>
Automations
);
}
function Actions() {
const create = () => {
window.alert('create');
};
return (
}>
{t('Create Automation')}
);
}