import { t } from 'app/core/internationalization';
import { useAlertmanager } from '../../state/AlertmanagerContext';
import { createRelativeUrl } from '../../utils/url';
import { withPageErrorBoundary } from '../../withPageErrorBoundary';
import { AlertmanagerPageWrapper } from '../AlertingPageWrapper';
import { TemplateForm } from '../receivers/TemplateForm';
import { ActiveTab } from './ContactPoints';
function NewMessageTemplatePage() {
return (
);
}
function NewMessageTemplate() {
const { selectedAlertmanager } = useAlertmanager();
return ;
}
export default withPageErrorBoundary(NewMessageTemplatePage);