forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
438 B
12 lines
438 B
import { AlertManagerCortexConfig } from 'app/plugins/datasource/alertmanager/types';
|
|
import React, { FC } from 'react';
|
|
import { TemplateForm } from './TemplateForm';
|
|
|
|
interface Props {
|
|
config: AlertManagerCortexConfig;
|
|
alertManagerSourceName: string;
|
|
}
|
|
|
|
export const NewTemplateView: FC<Props> = ({ config, alertManagerSourceName }) => {
|
|
return <TemplateForm config={config} alertManagerSourceName={alertManagerSourceName} />;
|
|
};
|
|
|