123456789101112131415161718192021222324252627282930313233 |
- 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 (
- <SentryDocumentTitle title={t('Automations')} noSuffix>
- <ActionsProvider actions={<Actions />}>
- <ListLayout>
- <h2>Automations</h2>
- </ListLayout>
- </ActionsProvider>
- </SentryDocumentTitle>
- );
- }
- function Actions() {
- return (
- <Fragment>
- <LinkButton to="/automations/new/" priority="primary" icon={<IconAdd isCircled />}>
- {t('Create Automation')}
- </LinkButton>
- </Fragment>
- );
- }
|