mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
18 lines
493 B
TypeScript
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>
|
|
);
|
|
};
|