Files
grafana/public/app/features/alerting/unified/components/rule-editor/DetailsStep.tsx
2021-04-14 15:57:36 +03:00

18 lines
493 B
TypeScript

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>
);
};