import {Fragment} from 'react'; import {LinkButton} 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() { return ( }> {t('Create Automation')} ); }