19 lines
506 B
TypeScript
19 lines
506 B
TypeScript
import { withPageErrorBoundary } from '../../withPageErrorBoundary';
|
|
import { AlertmanagerPageWrapper } from '../AlertingPageWrapper';
|
|
|
|
import MuteTimingForm from './MuteTimingForm';
|
|
|
|
function NewMuteTimingPage() {
|
|
return (
|
|
<AlertmanagerPageWrapper
|
|
navId="am-routes"
|
|
pageNav={{ id: 'alert-policy-new', text: 'Add mute timing' }}
|
|
accessType="notification"
|
|
>
|
|
<MuteTimingForm />
|
|
</AlertmanagerPageWrapper>
|
|
);
|
|
}
|
|
|
|
export default withPageErrorBoundary(NewMuteTimingPage);
|