Files
grafana/public/app/features/alerting/unified/components/rule-editor/DetailsStep.tsx

18 lines
493 B
TypeScript
Raw Normal View History

2021-04-14 15:57:36 +03:00
import React, { FC } from 'react';
import LabelsField from './LabelsField';
import AnnotationsField from './AnnotationsField';
import { RuleEditorSection } from './RuleEditorSection';
export const DetailsStep: FC = () => {
return (
<RuleEditorSection
stepNo={4}
title="Add details for your alert"
description="Write a summary and add labels to help you better manage your alerts"
>
<AnnotationsField />
<LabelsField />
</RuleEditorSection>
);
};