12345678910111213141516171819202122232425262728 |
- 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 (
- <NewAutomationLayout>
- <StickyFooter>
- <StickyFooterLabel>{t('Step 1 of 2')}</StickyFooterLabel>
- <Flex gap={space(1)}>
- <Button priority="default">{t('Cancel')}</Button>
- <LinkButton priority="primary" to="/automations/new/settings">
- {t('Next')}
- </LinkButton>
- </Flex>
- </StickyFooter>
- </NewAutomationLayout>
- );
- }
|