Project

General

Profile

1
import {NgModule} from '@angular/core';
2
import {RouterModule} from '@angular/router';
3
import {ManageUserNotificationsComponent} from './manage-user-notifications.component';
4

    
5
@NgModule({
6
  imports: [
7
    RouterModule.forChild([
8
      { path: '', component: ManageUserNotificationsComponent}
9
    ])
10
  ]
11
})
12
export class ManageUserNotificationsRoutingModule {
13
}
(1-1/6)