import {Button, LinkButton} from 'sentry/components/button'; import {Flex} from 'sentry/components/container/flex'; import { StickyFooter, StickyFooterLabel, } from 'sentry/components/workflowEngine/ui/footer'; import {useWorkflowEngineFeatureGate} from 'sentry/components/workflowEngine/useWorkflowEngineFeatureGate'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import NewAutomationLayout from 'sentry/views/automations/layouts/new'; export default function AutomationNew() { useWorkflowEngineFeatureGate({redirect: true}); return ( {t('Step 1 of 2')} {t('Next')} ); }