Project

General

Profile

1 61381 k.triantaf
import {NgModule} from '@angular/core';
2
import {RouterModule} from '@angular/router';
3
import {PortalsComponent} from "./portals.component";
4
5
@NgModule({
6
  imports: [
7
    RouterModule.forChild([
8
      { path: '',  component: PortalsComponent}
9
    ])
10
  ]
11
})
12
export class PortalsRoutingModule { }