2025-04-01 10:38:02 +09:00

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