monitor-dashboard/src/app/admin-tool/portals/portals-routing.module.ts

14 lines
416 B
TypeScript

import { NgModule } from '@angular/core';
import {RouterModule} from '@angular/router';
import {PortalsComponent} from "../../openaireLibrary/dashboard/portal/portals.component";
import {AdminLoginGuard} from "../../openaireLibrary/login/adminLoginGuard.guard";
@NgModule({
imports: [
RouterModule.forChild([
{ path: '', component: PortalsComponent}
])
]
})
export class PortalsRoutingModule { }